| Index: third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html b/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9aedb1fcc0d85f3e321ed57beccba3390eb780f9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<object id=obj>PASS if no crash</object>
|
| +<div id=move>
|
| + <span id=target></span>
|
| +</div>
|
| +<div id=bdo></div>
|
| +<style>
|
| +#move, #obj, #bdo { filter: url(#target); }
|
| +</style>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +runAfterLayoutAndPaint(function() {
|
| + bdo.style.zoom = 2;
|
| + obj.appendChild(move);
|
| +}, true);
|
| +</script>
|
|
|