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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-button-only-shadow.html

Issue 441223002: Update LayoutTests by removing child elements of <shadow> element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « LayoutTests/fast/dom/shadow/shadowdom-for-button-complex-shadow.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 4
5 <p>When the AuthorShadowDOM has only a shadow element, this should be rendered l ike no Shadow DOM is added.</p> 5 <p>When the AuthorShadowDOM has only a shadow element, this should be rendered l ike no Shadow DOM is added.</p>
6 <form> 6 <form>
7 <button id="host">button</button> 7 <button id="host">button</button>
8 </form> 8 </form>
9 9
10 <script> 10 <script>
11 var host = document.getElementById('host'); 11 var host = document.getElementById('host');
12 var shadowRoot = host.createShadowRoot(); 12 var shadowRoot = host.createShadowRoot();
13 shadowRoot.innerHTML = "<shadow><content></content></shadow>" 13 shadowRoot.innerHTML = "<shadow></shadow>"
14 </script> 14 </script>
15 </body> 15 </body>
16 </html> 16 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/shadowdom-for-button-complex-shadow.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698