Changeset 185154 in webkit
- Timestamp:
- Jun 3, 2015, 9:56:59 AM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r185110 r185154 1 2015-06-03 Alexey Proskuryakov <ap@apple.com> 2 3 Attempt to fix CSSPropertyParserTest.GridTrackLimits API test after http://trac.webkit.org/r185147 4 5 * TestWebKitAPI/Tests/WebCore/CSSParser.cpp: 6 (TestWebKitAPI::TEST): Update the syntax. 7 1 8 2015-06-02 Mark Lam <mark.lam@apple.com> 2 9 -
trunk/Tools/TestWebKitAPI/Tests/WebCore/CSSParser.cpp
r175930 r185154 59 59 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(1000000, 10%);", 1000000}, 60 60 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(1000000, 10%);", 1000000}, 61 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(1000000, (first) -webkit-min-content (last));", 1000000},62 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(1000000, (first) -webkit-min-content (last));", 1000000},61 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(1000000, [first] -webkit-min-content [last]);", 1000000}, 62 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(1000000, [first] -webkit-min-content [last]);", 1000000}, 63 63 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(1000001, auto);", 1000000}, 64 64 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(1000001, auto);", 1000000}, 65 65 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(400000, 2em minmax(10px, -webkit-max-content) 0.5fr);", 999999}, 66 66 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(400000, 2em minmax(10px, -webkit-max-content) 0.5fr);", 999999}, 67 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(600000, (first) 3vh 10% 2fr (nav) 10px auto 1fr 6em (last));", 999999},68 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(600000, (first) 3vh 10% 2fr (nav) 10px auto 1fr 6em (last));", 999999},67 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(600000, [first] 3vh 10% 2fr [nav] 10px auto 1fr 6em [last]);", 999999}, 68 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(600000, [first] 3vh 10% 2fr [nav] 10px auto 1fr 6em [last]);", 999999}, 69 69 {CSSPropertyWebkitGridTemplateColumns, "-webkit-grid-template-columns: repeat(100000000000000000000, 10% 1fr);", 1000000}, 70 70 {CSSPropertyWebkitGridTemplateRows, "-webkit-grid-template-rows: repeat(100000000000000000000, 10% 1fr);", 1000000},
Note:
See TracChangeset
for help on using the changeset viewer.