aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2015-08-13 12:12:45 +0200
committerMs2ger <Ms2ger@gmail.com>2015-08-13 12:12:45 +0200
commitc007b66d97dc137ea57d75864809e3655322a040 (patch)
treee3457206e1280c4ad1aa4dbe9505b2ed6aa418ba /tests
parent8f55af119033e7644d560ca607ad7a89916f53e6 (diff)
downloadservo-c007b66d97dc137ea57d75864809e3655322a040.tar.gz
servo-c007b66d97dc137ea57d75864809e3655322a040.zip
Correct the default value for Node#cloneNode's deep argument.
Diffstat (limited to 'tests')
-rw-r--r--tests/wpt/web-platform-tests/dom/nodes/Node-cloneNode.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/dom/nodes/Node-cloneNode.html b/tests/wpt/web-platform-tests/dom/nodes/Node-cloneNode.html
index fec456bb51f..a80f82cdc3d 100644
--- a/tests/wpt/web-platform-tests/dom/nodes/Node-cloneNode.html
+++ b/tests/wpt/web-platform-tests/dom/nodes/Node-cloneNode.html
@@ -237,7 +237,7 @@ test(function() {
var html = document.implementation.createHTMLDocument("title");
var copy = html.cloneNode();
check_copy(html, copy, Document);
- assert_equals(html.title, copy.title);
+ assert_equals(copy.title, "");
}, "implementation.createHTMLDocument");
test(function() {