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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/shadowdom-for-input-checkbox-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
4 <form>
5 <span id="cb1">&#x2714;</span>
6 <input type="submit">
7 </form>
8
9 <style>
10 #cb1 {
11 -webkit-appearance: none;
12 border: outset;
13 padding: 2px;
14 font-family: monospace;
15 font-size: 20px;
16 white-space: pre;
17 width: 30px;
18 height: 30px;
19 color: red;
20 display: inline-block;
21 box-sizing: border-box;
22 }
23
24 #cb1:focus {
25 outline: none;
26 }
27 </style>
28 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698