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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-root-applyAuthorStyles.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 span { 5 span {
6 background-color: #eef; 6 background-color: #eef;
7 border: solid; 7 border: solid;
8 color: #fee; 8 color: #fee;
9 display: boxed-inline; 9 display: boxed-inline;
10 font-size: 24px; 10 font-size: 24px;
11 margin: 2px; 11 margin: 2px;
12 outline-color: #f00; 12 outline-color: #f00;
13 padding-left: 5px; 13 padding-left: 5px;
14 text-align: start; 14 text-align: start;
15 text-decoration: underline; 15 text-decoration: underline;
16 } 16 }
17 input[type="file"] { 17 input[type="file"] {
18 text-align: end; 18 text-align: end;
19 } 19 }
20 </style> 20 </style>
21 <script src="resources/polyfill.js"></script>
22 </head> 21 </head>
23 <body> 22 <body>
24 <div id="apply-author-style"></div> 23 <div id="apply-author-style"></div>
25 <div id="no-apply-author-style"></div> 24 <div id="no-apply-author-style"></div>
26 <div id="with-inline-style-declaration"></div> 25 <div id="with-inline-style-declaration"></div>
27 <div id="try-to-override-important"></div> 26 <div id="try-to-override-important"></div>
28 <div id="change-apply-author-style-from-true-to-false"></div> 27 <div id="change-apply-author-style-from-true-to-false"></div>
29 <div id="change-apply-author-style-from-false-to-true"></div> 28 <div id="change-apply-author-style-from-false-to-true"></div>
30 29
31 <script> 30 <script>
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 141
143 renderApplyAuthorStyleCase(); 142 renderApplyAuthorStyleCase();
144 renderNoApplyAuthorStyleCase(); 143 renderNoApplyAuthorStyleCase();
145 renderApplyAuthorStyleWithInlineStyleDeclarationCase(); 144 renderApplyAuthorStyleWithInlineStyleDeclarationCase();
146 renderApplyAuthorStyleWithOverridingImportantPropertyCase(); 145 renderApplyAuthorStyleWithOverridingImportantPropertyCase();
147 testChangingApplyAuthorStyleFromTrueToFalse(); 146 testChangingApplyAuthorStyleFromTrueToFalse();
148 testChangingApplyAuthorStyleFromFalseToTrue(); 147 testChangingApplyAuthorStyleFromFalseToTrue();
149 </script> 148 </script>
150 </body> 149 </body>
151 </html> 150 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698