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

Unified Diff: LayoutTests/fast/css/parsing-error-recovery.html

Issue 14969002: CSS parsing recovery in function. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merged 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/css/CSSGrammar.y.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/parsing-error-recovery.html
diff --git a/LayoutTests/fast/css/parsing-error-recovery.html b/LayoutTests/fast/css/parsing-error-recovery.html
index 9abf92cdc2c75244bb0c0f0b099906411ca2be94..c518018946a51a543ad4d53fa8d508dc44946a83 100644
--- a/LayoutTests/fast/css/parsing-error-recovery.html
+++ b/LayoutTests/fast/css/parsing-error-recovery.html
@@ -60,6 +60,36 @@
display: block !important {invalid_block}
}
+ #test8 {
+ color: rgb(1,});
+ display: none;
+ }
+
+ #test9 {
+ color: rgb(});
+ display: none;
+ }
+
+ #test10 {
+ width: calc(1,});
+ display: none;
+ }
+
+ #test11 {
+ width: calc(});
+ display: none;
+ }
+
+ #test12 {
+ width: -webkit-min(1,});
+ display: none;
+ }
+
+ #test13 {
+ width: -webkit-min(});
+ display: none;
+ }
+
/* Successfully parsed */
#last {
display:block;
@@ -74,6 +104,12 @@
<div class="to_be_hidden" id="test5">FAIL: Test 5</div>
<div class="to_be_hidden" id="test6">FAIL: Test 6</div>
<div class="to_be_hidden" id="test7">FAIL: Test 7</div>
+ <div class="to_be_hidden" id="test8">FAIL: Test 8</div>
+ <div class="to_be_hidden" id="test9">FAIL: Test 9</div>
+ <div class="to_be_hidden" id="test10">FAIL: Test 10</div>
+ <div class="to_be_hidden" id="test11">FAIL: Test 11</div>
+ <div class="to_be_hidden" id="test12">FAIL: Test 12</div>
+ <div class="to_be_hidden" id="test13">FAIL: Test 13</div>
<div class="to_be_shown" id="last">PASS</div>
</body>
</html>
« no previous file with comments | « no previous file | Source/core/css/CSSGrammar.y.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698