Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/css/calc-comments-allowed.html

Issue 25607005: Fix WHITESPACE issues in the CSS grammar. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Comments inside calc() allowed</title>
5 <style>
6 div { height: 50px; background-color: green; font-size: 50px; }
7 #t1 { width: calc(50px + 1em) }
8 #t2 { width: calc(50px + /* Comment allowed */ 1em) }
9 </style>
10 </head>
11 <body>
12 <p>You should see a green square below</p>
13 <div id="t1"></div>
14 <div id="t2"></div>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine