Skip to content

Commit

Permalink
Merge pull request #137 from ngyikp/subresource-not-recommended
Browse files Browse the repository at this point in the history
Move <link rel="subresource"> to the not recommended section
  • Loading branch information
scottaohara committed Jul 27, 2016
2 parents 2576331 + e4de077 commit e5324e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ Below are the meta attributes which are not recommended for use as they had low
<link rel="preconnect" href="https://www.example.com/">
<link rel="prefetch" href="https://www.example.com/">
<link rel="prerender" href="https://example.com/">
<link rel="subresource" href="styles.css">
<link rel="preload" href="image.png" as="image">
<!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ -->
```
Expand All @@ -295,6 +294,9 @@ Below are the link relations which are not recommended for use:

```html
<link rel="shortcut icon" href="path/to/favicon.ico">

<!-- Not useful, proprietary and buggy, see https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/Y_2eFRh9BOs/gULYapoRBwAJ -->
<link rel="subresource" href="styles.css">
```

### Favicons
Expand Down

0 comments on commit e5324e4

Please sign in to comment.