Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: LayoutTests/fast/dom/isEqualNode-after-removeAttribute.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 9
10 description("Tests that Node.isEqualNode behaves correctly after an element that originally had attributes has had them removed."); 10 description("Tests that Node.isEqualNode behaves correctly after an element that originally had attributes has had them removed.");
(...skipping 10 matching lines...) Expand all
21 e1 = document.createElement('span'); 21 e1 = document.createElement('span');
22 e2 = document.createElement('span'); 22 e2 = document.createElement('span');
23 23
24 shouldBe("e1.isEqualNode(e2)", "true"); 24 shouldBe("e1.isEqualNode(e2)", "true");
25 e1.setAttribute("foo", "bar"); 25 e1.setAttribute("foo", "bar");
26 shouldBe("e1.isEqualNode(e2)", "false"); 26 shouldBe("e1.isEqualNode(e2)", "false");
27 e1.removeAttribute("foo"); 27 e1.removeAttribute("foo");
28 shouldBe("e1.isEqualNode(e2)", "true"); 28 shouldBe("e1.isEqualNode(e2)", "true");
29 29
30 </script> 30 </script>
31 <script src="../js/resources/js-test-post.js"></script>
32 </body> 31 </body>
33 </html> 32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/interface-object-proto.html ('k') | LayoutTests/fast/dom/javascript-url-exception-isolation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698