Skip to content

Commit

Permalink
Meta: attempt to confuse caches less
Browse files Browse the repository at this point in the history
Other standards load some of these resources using CORS.

This may help with whatwg/whatwg.org#253.
  • Loading branch information
annevk authored and domenic committed Oct 13, 2019
1 parent c9dc656 commit ebcac97
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
<title w-nodev>HTML Standard</title>
<title w-dev>HTML Standard, Developer's Edition</title>
<meta name="theme-color" content="#3c790a">
<link w-nodev rel="stylesheet" href="https://resources.whatwg.org/spec.css">
<link w-nodev w-noreview rel="stylesheet" href="https://resources.whatwg.org/standard.css">
<link w-noreview rel="stylesheet" href="https://resources.whatwg.org/standard-shared-with-dev.css">
<link w-nohtml w-nodev w-nosnap rel="stylesheet" href="https://resources.whatwg.org/review-draft.css">
<link w-nosnap w-noreview rel="icon" href="https://resources.whatwg.org/logo.svg">
<link w-nohtml w-nodev rel="icon" href="https://resources.whatwg.org/logo-snapshot.svg">
<link w-nodev crossorigin rel="stylesheet" href="https://resources.whatwg.org/spec.css">
<link w-nodev w-noreview crossorigin rel="stylesheet" href="https://resources.whatwg.org/standard.css">
<link w-noreview rel="stylesheet" crossorigin href="https://resources.whatwg.org/standard-shared-with-dev.css">
<link w-nohtml w-nodev w-nosnap rel="stylesheet" crossorigin href="https://resources.whatwg.org/review-draft.css">
<link w-nosnap w-noreview rel="icon" crossorigin href="https://resources.whatwg.org/logo.svg">
<link w-nohtml w-nodev rel="icon" crossorigin href="https://resources.whatwg.org/logo-snapshot.svg">
<script>
function toggleStatus(div) {
div.parentNode.classList.toggle('wrapped');
}
</script>
<link w-dev rel="stylesheet" href="styles.css">
<link w-dev rel="stylesheet" crossorigin href="styles.css">
<style w-nodev>
.bad, .bad *:not(.X\58X) { color: gray; }

Expand Down Expand Up @@ -156,11 +156,11 @@
</head>
<body>
<script w-dev src="search.js" async></script>
<script w-nodev w-noreview src="/html-dfn.js" async></script>
<script w-nodev w-noreview src="https://resources.whatwg.org/file-issue.js" async data-file-issue-url="https://github.com/whatwg/html/issues/new"></script>
<script w-nodev w-noreview w-nosplit src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js" async></script>
<script w-nodev w-noreview crossorigin src="/html-dfn.js" async></script>
<script w-nodev w-noreview crossorigin src="https://resources.whatwg.org/file-issue.js" async data-file-issue-url="https://github.com/whatwg/html/issues/new"></script>
<script w-nodev w-noreview w-nosplit crossorigin src="https://resources.whatwg.org/commit-snapshot-shortcut-key.js" async></script>
<header class="head with-buttons" id="head">
<a href="https://whatwg.org/" class="logo"><img width="100" height="100" alt="WHATWG" src="https://resources.whatwg.org/logo.svg"></a>
<a href="https://whatwg.org/" class="logo"><img crossorigin width="100" height="100" alt="WHATWG" src="https://resources.whatwg.org/logo.svg"></a>
<hgroup w-nodev>
<h1 class="allcaps">HTML</h1>
<h2 w-nosnap w-noreview id="living-standard" class="no-num no-toc">Living Standard &mdash; Last Updated <span class="pubdate">[DATE: 01 Jan 1901]</span></h2>
Expand Down

0 comments on commit ebcac97

Please sign in to comment.