mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Auto merge of #6559 - kball:IS1824-implement-Node.baseURI, r=Ms2ger
Implement Node.baseURI Addresses Issue #1824. Implements Node.baseURI based on https://www.w3.org/Bugs/Public/show_bug.cgi?id=20976#c32 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6559) <!-- Reviewable:end -->
This commit is contained in:
commit
1e16047846
5 changed files with 42 additions and 7 deletions
|
@ -13117,6 +13117,10 @@
|
|||
"path": "dom/nodes/Node-appendChild.html",
|
||||
"url": "/dom/nodes/Node-appendChild.html"
|
||||
},
|
||||
{
|
||||
"path": "dom/nodes/Node-baseURI.html",
|
||||
"url": "/dom/nodes/Node-baseURI.html"
|
||||
},
|
||||
{
|
||||
"path": "dom/nodes/Node-childNodes.html",
|
||||
"url": "/dom/nodes/Node-childNodes.html"
|
||||
|
@ -31931,4 +31935,4 @@
|
|||
"rev": "87398b8448f699e3e324148795891658f2fa16dd",
|
||||
"url_base": "/",
|
||||
"version": 2
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
expected: FAIL
|
||||
|
||||
[The fallback base URL of a document containing no base element is the document's address.]
|
||||
expected: FAIL
|
||||
expected: PASS
|
||||
|
||||
[The fallback base URL of a document whose address is about:blank is the document base URL of the creator document.]
|
||||
expected: TIMEOUT
|
||||
|
|
32
tests/wpt/web-platform-tests/dom/nodes/Node-baseURI.html
Normal file
32
tests/wpt/web-platform-tests/dom/nodes/Node-baseURI.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Node.baseURI</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var element = document.createElement("div");
|
||||
document.body.appendChild(element);
|
||||
assert_equals(element.baseURI, document.URL);
|
||||
}, "For elements belonging to document, baseURI should be document url")
|
||||
|
||||
test(function() {
|
||||
var element = document.createElement("div");
|
||||
assert_equals(element.baseURI, document.URL);
|
||||
}, "For elements unassigned to document, baseURI should be document url")
|
||||
|
||||
test(function() {
|
||||
var fragment = document.createDocumentFragment();
|
||||
var element = document.createElement("div");
|
||||
fragment.appendChild(element);
|
||||
assert_equals(element.baseURI, document.URL)
|
||||
}, "For elements belonging to document fragments, baseURI should be document url")
|
||||
|
||||
test(function() {
|
||||
var fragment = document.createDocumentFragment();
|
||||
var element = document.createElement("div");
|
||||
fragment.appendChild(element);
|
||||
document.body.appendChild(fragment);
|
||||
assert_equals(element.baseURI, document.URL)
|
||||
}, "After inserting fragment into document, element baseURI should be document url")
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue