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,29 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: base_href_empty</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-base-element">
<base id="base" href="" target="_blank">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<img id="test" src="/images/blue-100x100.png" style="display:none">
<script>
var testElement,
baseElement;
setup(function() {
testElement = document.getElementById("test");
baseElement = document.getElementById("base");
});
test(function() {
assert_equals(baseElement.href, document.location.href, "The href of base element is incorrect.");
}, "The value of the href attribute must be the document's address if it is empty");
test(function() {
var exp = testElement.src.substring(0, testElement.src.lastIndexOf("/images/blue-100x100.png") + 1);
assert_true(baseElement.href.indexOf(exp) != -1, "The src of img element is incorrect.");
}, "The src attribute of the img element must relative to document's address");
</script>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: base_href_specified</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-base-element">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<base id="base" href="http://{{domains[www]}}:{{ports[http][0]}}">
<div id="log"></div>
<img id="test" src="test.ico" style="display:none">
<script>
var testElement;
var baseElement;
setup(function() {
testElement = document.getElementById("test");
baseElement = document.getElementById("base");
});
test(function() {
assert_equals(baseElement.href, "http://{{domains[www]}}:{{ports[http][0]}}/", "The href attribute of the base element is incorrect.");
}, "The href attribute of the base element is specified");
test(function() {
assert_equals(testElement.src, "http://{{domains[www]}}:{{ports[http][0]}}/test.ico", "The src attribute of the img element is incorrect.");
}, "The src attribute of the img element must relative to the href attribute of the base element");
</script>

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: base_href_unspecified</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-base-element">
<base id="base" target="_blank">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<img id="test" src="/images/blue-100x100.png" style="display:none">
<script>
var testElement,
baseElement;
setup(function () {
testElement = document.getElementById("test");
baseElement = document.getElementById("base");
});
test(function() {
assert_equals(baseElement.href, document.location.href, "Return the document base URL if the base element has no href content attribute.");
}, "The value of the href attribute must be the document's address if it is unspecified");
test(function() {
var exp = testElement.src.substring(0, testElement.src.lastIndexOf("/images/blue-100x100.png") + 1);
assert_true(baseElement.href.indexOf(exp) != -1, "The src attribute of the img element is incorrect.");
}, "The src attribute of the img element must relative to document's address");
</script>

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: base_multiple</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-base-element">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body onload="on_load()">
<div id="log"></div>
<iframe id="test1" src="example.html" style="width:0;height:0" frameborder="0"></iframe>
<iframe id="test2" src="example.html" name="targetWin" style="width:0;height:0" frameborder="0"></iframe>
<script>
var t = async_test("The attributes of the a element must be affected by the first base element"),
doc1,
fr2,
a1;
function on_load() {
setup(function (){
doc1 = document.getElementById("test1").contentDocument;
fr2 = document.getElementById("test2");
a1 = doc1.getElementById("a1");
});
fr2.addEventListener("load", function () {
t.step(function () {
var doc2 = fr2.contentDocument;
assert_not_equals(doc2.location.href.indexOf("example2.html"), -1, "The target attribute does not impact the a element.");
assert_equals(doc2.getElementById("d1").innerHTML, "PASS", "The opend page should be the example2.html.");
});
t.done();
}, true);
a1.click();
}
</script>
</body>

View file

@ -0,0 +1,7 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Example</title>
<base target="targetWin" href="">
<base target="_self" href="http://www.example.com/">
<link rel="author" title="Intel" href="http://www.intel.com/">
<a id="a1" href="example2.html" target="">click me</a>

View file

@ -0,0 +1,5 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Example</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<div id="d1">PASS</div>