| Index: third_party/WebKit/LayoutTests/plugins/reattach-plugin-during-access.html
|
| diff --git a/third_party/WebKit/LayoutTests/plugins/reattach-plugin-during-access.html b/third_party/WebKit/LayoutTests/plugins/reattach-plugin-during-access.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f7b9775b7b13dc626ec376a8b37d894918f7bdef
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/plugins/reattach-plugin-during-access.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +
|
| +function f() {
|
| + divElem.appendChild(objElem);
|
| + objElem[''] = 42;
|
| +}
|
| +</script>
|
| +<div id='divElem'></div>
|
| +<object id='objElem' type="text/javascript" onload='f()'></object>
|
| +<p>Test passes if it doesn't crash</p>
|
|
|