Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>The import attribute</title>
<link rel="help" href="http://w3c.github.io/webcomponents/spec/imports/#interface-import">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="stylesheet" href="/resources/testharness.css">
<link id="nonImportLink" rel="stylesheet" href="resources/hello.css">
<link id="goOutFromDocument" rel="import" href="resources/body-only-0.html">
<link id="importLink" rel="import" href="resources/body-only-1.html">
<link id="anotherImportLink" rel="import" href="resources/body-only-2.html">
</head>
<body>
<div id="log"></div>
<script>
test(function() {
assert_equals(nonImportLink.import, null);
}, 'The import attribute must return null if the link does not represent an import.');
test(function() {
var link = goOutFromDocument;
assert_true(link.import != null);
document.head.removeChild(link);
assert_equals(link.import, null);
}, 'The import attribute must return null if the link element is not in a Document.');
test(function() {
assert_equals(importLink.import.body.id, 'body-only-1');
}, 'The attribute must return the imported document for the import.');
test(function() {
var importA = importLink.import;
var importB = document.querySelector('#importLink').import;
var anotherImport = document.querySelector('#anotherImportLink').import;
assert_true(importA === importB);
assert_true(importA !== anotherImport);
}, 'The same object must be returned each time.');
</script>
</body>
</html>

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<html>
<body id="body-only-0">Hello</body>
</html>

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<html>
<body id="body-only-1">Hello</body>
</html>

View file

@ -0,0 +1,4 @@
<!DOCTYPE html>
<html>
<body id="body-only-2">Hello</body>
</html>

View file

@ -0,0 +1,3 @@
h1 {
color: red;
}