| Index: third_party/WebKit/LayoutTests/fast/events/event-listener-detached.html | 
| diff --git a/third_party/WebKit/LayoutTests/fast/events/event-listener-detached.html b/third_party/WebKit/LayoutTests/fast/events/event-listener-detached.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..1ceb56e6a22e0e30eab34f3b789b0600f15d9c65 | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/fast/events/event-listener-detached.html | 
| @@ -0,0 +1,12 @@ | 
| +<!DOCTYPE html> | 
| +<script src="../../resources/testharness.js"></script> | 
| +<script src="../../resources/testharnessreport.js"></script> | 
| +<script> | 
| +var t = async_test("Updating attributes for detached nodes should not crash."); | 
| +function test() { | 
| +  frame.contentDocument.adoptNode(document.scrollingElement); | 
| +  t.done(); | 
| +} | 
| +</script> | 
| +<iframe id="frame" onload="test()"></iframe> | 
| +<div ontransitionend="g()" onwebkittransitionend="h()"> | 
|  |