| Index: LayoutTests/fast/dom/shadow/update-distribution-for-matches.html
|
| diff --git a/LayoutTests/fast/dom/shadow/update-distribution-for-matches.html b/LayoutTests/fast/dom/shadow/update-distribution-for-matches.html
|
| deleted file mode 100644
|
| index de14accd97bc42eb8691860b08032f13b9612f38..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/update-distribution-for-matches.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!doctype html>
|
| -<script>
|
| -var proto = Object.create(HTMLElement.prototype);
|
| -proto.createdCallback = function() {
|
| - var root = this.createShadowRoot();
|
| - document.querySelector('li').matches('::content *');
|
| -};
|
| -var MyList = document.registerElement("my-list", { prototype: proto });
|
| -</script>
|
| -<my-list>
|
| - <li></li>
|
| -</my-list>
|
| -<div>crbug.com/489911 blink crashy with shadow DOM</div>
|
| -<div>If this test passes, no crash occurs and "PASS" is shown.</div>
|
| -<div id="result"></div>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -result.textContent = "PASS";
|
| -</script>
|
|
|