Merge existing wpt Document::body tests.

This commit is contained in:
Ms2ger 2016-04-29 09:56:38 +02:00
parent 78ae9a5da0
commit cfe2c6b504
3 changed files with 34 additions and 32 deletions

View file

@ -35238,7 +35238,10 @@
"wdspec": [] "wdspec": []
}, },
"local_changes": { "local_changes": {
"deleted": [], "deleted": [
"html/dom/documents/dom-tree-accessors/document.body-getter.html",
"html/dom/documents/dom-tree-accessors/document.body-setter-01.html"
],
"deleted_reftests": {}, "deleted_reftests": {},
"items": { "items": {
"reftest": { "reftest": {
@ -35254,6 +35257,14 @@
"url": "/html/rendering/replaced-elements/embedded-content-rendering-rules/canvas_without_context_a.html" "url": "/html/rendering/replaced-elements/embedded-content-rendering-rules/canvas_without_context_a.html"
} }
] ]
},
"testharness": {
"html/dom/documents/dom-tree-accessors/Document.body.html": [
{
"path": "html/dom/documents/dom-tree-accessors/Document.body.html",
"url": "/html/dom/documents/dom-tree-accessors/Document.body.html"
}
]
} }
}, },
"reftest_nodes": { "reftest_nodes": {

View file

@ -118,4 +118,26 @@ test(function() {
doc.appendChild(doc.createElementNS("http://example.org/test", "frameset")); doc.appendChild(doc.createElementNS("http://example.org/test", "frameset"));
assert_equals(doc.body, null); assert_equals(doc.body, null);
}, "Non-HTML frameset as the root node"); }, "Non-HTML frameset as the root node");
var originalBody = document.body;
test(function() {
assert_throws(new TypeError(), function() {
document.body = "text"
})
assert_equals(document.body, originalBody);
}, "Setting document.body to a string.")
test(function() {
assert_throws("HierarchyRequestError", function() {
document.body = document.createElement("div")
})
assert_equals(document.body, originalBody);
}, "Setting document.body to a div element.")
test(function() {
var doc = createDocument();
assert_throws("HierarchyRequestError", function() {
doc.body = doc.createElement("body")
})
assert_equals(doc.body, null);
}, "Setting document.body when there's no root element.")
</script> </script>

View file

@ -1,31 +0,0 @@
<!DOCTYPE html>
<title>Setting document.body to incorrect values</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-body">
<link rel="help" href="https://heycam.github.io/webidl/#es-interface">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var originalBody = document.body;
test(function() {
assert_throws(new TypeError(), function() {
document.body = "text"
})
}, "Should throw a TypeError when trying to set document.body to a string.")
test(function() {
assert_throws("HierarchyRequestError", function() {
document.body = document.createElement("div")
})
}, "Should throw a HierarchyRequestError when trying to set document.body to a div element.")
test(function() {
var doc = document.implementation.createHTMLDocument("")
doc.removeChild(doc.documentElement)
assert_throws("HierarchyRequestError", function() {
doc.body = document.createElement("body")
})
}, "Should throw a HierarchyRequestError when trying to set document.body when there's no root element.")
test(function() {
assert_equals(document.body, originalBody);
}, "document.body has not changed")
</script>