Skip to content

Commit

Permalink
[] (0) Abstract out the determination of the base URL from the resolv…
Browse files Browse the repository at this point in the history
…ing-a-relative-URL section; remove the resolving step from the navigating and fetching algorithms; make the base URI used for relative URL resolution by scripts be set by the first script that is running, not the last.

git-svn-id: http://svn.whatwg.org/webapps@2709 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 27, 2009
1 parent 62aba03 commit b6c8583
Show file tree
Hide file tree
Showing 3 changed files with 831 additions and 658 deletions.
17 changes: 13 additions & 4 deletions header-whatwg
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,20 @@
[hidden] { display: none; }
</style>
<link rel="stylesheet" href="status.css">
<script src="status.js"></script>
<script src="dfn.js"></script>
<script src="toc.js"></script>
<script>
function load(script) {
var e = document.createElement('script');
e.setAttribute('src', script);
document.body.appendChild(e);
}
function init() {
load('status.js');
load('dfn.js');
load('toc.js');
}
</script>
</head>
<body class="draft" onload="initAnnotations()">
<body class="draft" onload="init()">

<div class="head">
<p><a rel="home" href="http://www.whatwg.org/" class="logo"><img alt="WHATWG" src="/images/logo"></a></p>
Expand Down
Loading

0 comments on commit b6c8583

Please sign in to comment.