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

Side by Side Diff: third_party/WebKit/LayoutTests/css-parser/ascii-case-insensitive-matching.html

Issue 1636453002: Use ASCII case-insensitive matching for ident-likes in the CSS parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Consistent indentation in test. Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSAtRuleID.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <style>
5 #a {
6 width: 100px;
7 height: 100px;
8 background-color: green;
9 }
10
11 @support\017f (background-color: red) {
12 #a {
13 background-color: red;
14 }
15 }
16 </style>
17 <div id=a></div>
18 <script>
19 test(function() {
20 assert_equals(getComputedStyle(a).backgroundColor, "rgb(0, 128, 0)");
21 }, "Identifier values are matched ASCII case-insensitively");
22 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSAtRuleID.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698