Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../resources/testharness.js"></script> | |
| 3 <script src="../../resources/testharnessreport.js"></script> | |
| 4 <script> | |
| 5 var t = async_test("Updating attributes for detached nodes should not crash."); | |
| 6 function test() { | |
| 7 frame.contentDocument.adoptNode(document.scrollingElement); | |
| 8 t.done(); | |
| 9 } | |
| 10 </script> | |
| 11 <iframe id="frame" onload="test()"></iframe> | |
| 12 <div ontransitionend="g()" onwebkittransitionend="h()"> | |
| OLD | NEW |