Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Unified Diff: LayoutTests/fast/dom/shadow/update-distribution-for-matches.html

Issue 1153873004: Handle ::content and :host-context correctly in SelectorQuery. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test naming. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698