aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-08-13 13:51:06 -0600
committerbors-servo <metajack+bors@gmail.com>2015-08-13 13:51:06 -0600
commit42d74324e22be0f105d2412938df8b05c20feff6 (patch)
tree7db6a50d207c42a6c6a7c344b5f005c3016c1cae /tests
parenta03616f379c255cc6c9b6e1d04dd7d98bd9926ce (diff)
parentc007b66d97dc137ea57d75864809e3655322a040 (diff)
downloadservo-42d74324e22be0f105d2412938df8b05c20feff6.tar.gz
servo-42d74324e22be0f105d2412938df8b05c20feff6.zip
Auto merge of #7190 - Ms2ger:node-clone, r=jdm
Correct the default value for Node#cloneNode's deep argument. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7190) <!-- Reviewable:end -->
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() {