diff options
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() { |