diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-08-13 13:51:06 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-08-13 13:51:06 -0600 |
commit | 42d74324e22be0f105d2412938df8b05c20feff6 (patch) | |
tree | 7db6a50d207c42a6c6a7c344b5f005c3016c1cae /tests | |
parent | a03616f379c255cc6c9b6e1d04dd7d98bd9926ce (diff) | |
parent | c007b66d97dc137ea57d75864809e3655322a040 (diff) | |
download | servo-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.html | 2 |
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() { |