diff options
author | Ms2ger <Ms2ger@gmail.com> | 2015-08-13 12:12:45 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2015-08-13 12:12:45 +0200 |
commit | c007b66d97dc137ea57d75864809e3655322a040 (patch) | |
tree | e3457206e1280c4ad1aa4dbe9505b2ed6aa418ba /tests | |
parent | 8f55af119033e7644d560ca607ad7a89916f53e6 (diff) | |
download | servo-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.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() { |