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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/content/content-none.html

Issue 1824283002: Ensure that we don't allow 'normal' alongside other values in content property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
1 <html> 1 <html>
2 2
3 <head> 3 <head>
4 <style type="text/css"> 4 <style type="text/css">
5 span:before { content: "TEST FAILED"; } 5 span:before { content: "TEST FAILED"; }
6 #test:before { content: none; } 6 #test:before { content: none; }
7 #testContainer {
8 border:1px solid black;
9 }
7 </style> 10 </style>
8 <script type="text/javascript"> 11 <script type="text/javascript">
9 if (window.testRunner) { 12 if (window.testRunner) {
10 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
11 testRunner.waitUntilDone(); 14 testRunner.waitUntilDone();
12 } 15 }
13 16
14 function run() { 17 function run() {
15 testWidth = window.getComputedStyle(document.getElementById("tes tContainer"), null).getPropertyValue("width"); 18 testWidth = window.getComputedStyle(document.getElementById("tes tContainer"), null).getPropertyValue("width");
16 referenceWidth=window.getComputedStyle(document.getElementById(" reference"), null).getPropertyValue("width"); 19 referenceWidth=window.getComputedStyle(document.getElementById(" reference"), null).getPropertyValue("width");
(...skipping 20 matching lines...) Expand all
37 <table> 40 <table>
38 <tr> 41 <tr>
39 <td id="reference">12345678901234567890</td> 42 <td id="reference">12345678901234567890</td>
40 <td>1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 </td> 43 <td>1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 </td>
41 </tr> 44 </tr>
42 </table> 45 </table>
43 <p>========Marker3========</p> 46 <p>========Marker3========</p>
44 <pre id="console"/> 47 <pre id="console"/>
45 </body> 48 </body>
46 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698