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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/content-element-select-namespace.html

Issue 1616423003: Fix selector namespace prefix resolution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed review issues Created 4 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>You should see the word PASS below.</p>
3 <host>
4 <span id="s1">FAIL</span>
5 <span id="s2">PASS</span>
6 </host>
7 <script>
8 var h = document.querySelector("host");
9 var r = h.createShadowRoot();
10 r.innerHTML = '<content select="bogus|span#s1"></content><content select="*| span#s2"></content>';
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698