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

Side by Side Diff: LayoutTests/fast/dom/dom-method-document-change.html

Issue 6685081: Merge 80487 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 9 months 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/dom-method-document-change-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 if (window.layoutTestController) 4 if (window.layoutTestController)
5 layoutTestController.dumpAsText(); 5 layoutTestController.dumpAsText();
6 6
7 handler = function() 7 handler = function()
8 { 8 {
9 this.removeEventListener("DOMNodeRemoved", handler, false); 9 this.removeEventListener("DOMNodeRemoved", handler, false);
10 doc.adoptNode(this.parentElement); 10 doc.adoptNode(this.parentElement);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 try { 45 try {
46 doc.body.replaceChild(element3, dummy); 46 doc.body.replaceChild(element3, dummy);
47 } catch (e) { } 47 } catch (e) { }
48 if (element3.ownerDocument != element3.parentElement.ownerDocument) 48 if (element3.ownerDocument != element3.parentElement.ownerDocument)
49 return showFailure("replaceChild"); 49 return showFailure("replaceChild");
50 } 50 }
51 </script> 51 </script>
52 </head> 52 </head>
53 <body>SUCCESS</body> 53 <body>SUCCESS</body>
54 </html> 54 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/dom-method-document-change-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698