Update web-platform-tests to revision dc5cbf088edcdb266541d4e5a76149a2c6e716a0

This commit is contained in:
Ms2ger 2016-09-09 09:40:35 +02:00
parent 1d40075f03
commit 079092dfea
2381 changed files with 90360 additions and 17722 deletions

View file

@ -5,7 +5,8 @@
<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]}}">
<script src="/common/get-host-info.sub.js"></script>
<base id="base">
<div id="log"></div>
<img id="test" src="test.ico" style="display:none">
@ -13,16 +14,20 @@
var testElement;
var baseElement;
var otherOrigin = get_host_info().HTTP_REMOTE_ORIGIN;
setup(function() {
testElement = document.getElementById("test");
baseElement = document.getElementById("base");
baseElement.setAttribute("href", otherOrigin);
});
test(function() {
assert_equals(baseElement.href, "http://{{domains[www]}}:{{ports[http][0]}}/", "The href attribute of the base element is incorrect.");
assert_equals(baseElement.href, otherOrigin + "/", "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.");
assert_equals(testElement.src, otherOrigin + "/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>