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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-meter-redistribute.html

Issue 880573007: Re-attach renderer for progress/meter when author shadow is allowed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 <style>
3 meter {
4 display: block;
5 width: auto
6 }
7 </style>
8 <meter id="host"></meter>
9 <script>
10 if (window.internals)
11 internals.settings.setAuthorShadowDOMForAnyElementEnabled(true);
12
13 document.body.offsetTop; // Force rendering with UA Shadow DOM.
14
15 var root = host.createShadowRoot();
16 root.innerHTML = "<div>You should see no meter.</div>";
17 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/dom/shadow/shadowdom-for-meter-redistribute-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698