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

Side by Side Diff: LayoutTests/inspector/console/console-css-warnings.html

Issue 22925002: Add support to resolve unprefixed CSS animations properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 5
6 <style> 6 <style>
7 x {} 7 x {}
8 8
9 x { 9 x {
10 # 10 #
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 104
105 @xxx; 105 @xxx;
106 @xxx {} 106 @xxx {}
107 107
108 @namespace "xxx" %; 108 @namespace "xxx" %;
109 @namespace %; 109 @namespace %;
110 @namespace; 110 @namespace;
111 111
112 @media %%%; 112 @media %%%;
113 113
114 @keyframes; 114
115 @keyframes { } 115
116 @-moz-keyframes { } 116 @-moz-keyframes { }
117 117
118 @page; 118 @page;
119 @page xxx; 119 @page xxx;
120 120
121 @font-face; 121 @font-face;
122 @font-face xxx; 122 @font-face xxx;
123 123
124 @host; 124 @host;
125 @host xxx; 125 @host xxx;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 InspectorTest.completeTest(); 194 InspectorTest.completeTest();
195 } 195 }
196 196
197 </script> 197 </script>
198 </head> 198 </head>
199 199
200 <body onload="runTest()"> 200 <body onload="runTest()">
201 <p id="p">Tests CSS warnings are properly exposed.</p> 201 <p id="p">Tests CSS warnings are properly exposed.</p>
202 </body> 202 </body>
203 </html> 203 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698