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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/shadowdom-for-input-appearance-expected.html

Issue 1751953003: Remove the support of multiple shadow roots with a user agent shadow root (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix failing tests Created 4 years, 9 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 <body>
3 <style>
4 span {
5 border: none;
6 display: inline-block;
7 font: -webkit-small-control;
8 margin: 2px;
9 padding: 2px;
10 color: black;
11 background-color: white;
12 }
13 .color {
14 width: 44px;
15 height: 23px;
16 }
17 .date {
18 font-family: monospace;
19 }
20 .hidden {
21 display: none;
22 }
23 </style>
24 <div><span class="button">Shadow!Content</span></div>
25 <div><span class="checkbox">Shadow!Content</span></div>
26 <div><span class="color">Shadow!Content</span></div>
27 <div><span class="date">Shadow!Content</span></div>
28 <div><span class="file">Shadow!Content</span></div>
29 <div><span class="hidden">Shadow!Content</span></div>
30 <div><span class="number">Shadow!Content</span></div>
31 <div><span class="radio">Shadow!Content</span></div>
32 <div><span class="range">Shadow!Content</span></div>
33 <div><span class="search">Shadow!Content</span></div>
34 <div><span class="text" tabindex=0>Shadow!Content</span></div>
35 <script>document.querySelector('.text').focus();</script>
36 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698