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

Side by Side Diff: third_party/WebKit/LayoutTests/css-parser/unitless-length-quirk.html

Issue 2841863005: CSS Motion Path: delete implementation of motion-offset property (Closed)
Patch Set: ManualTests Created 3 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 unified diff | Download patch
OLDNEW
1 <script src="../resources/testharness.js"></script> 1 <script src="../resources/testharness.js"></script>
2 <script src="../resources/testharnessreport.js"></script> 2 <script src="../resources/testharnessreport.js"></script>
3 <script src="resources/property-parsing-test.js"></script> 3 <script src="resources/property-parsing-test.js"></script>
4 <script> 4 <script>
5 // Intentionally testing in quirks mode 5 // Intentionally testing in quirks mode
6 assert_valid_value("paddingLeft", "20", "20px", true); 6 assert_valid_value("paddingLeft", "20", "20px", true);
7 assert_valid_value("top", "30", "30px", true); 7 assert_valid_value("top", "30", "30px", true);
8 assert_valid_value("minWidth", "40", "40px", true); 8 assert_valid_value("minWidth", "40", "40px", true);
9 9
10 assert_invalid_value("outlineWidth", "50"); 10 assert_invalid_value("outlineWidth", "50");
11 assert_invalid_value("motionOffset", "60"); 11 assert_invalid_value("offsetDistance", "60");
12 assert_invalid_value("webkitPaddingStart", "12"); 12 assert_invalid_value("webkitPaddingStart", "12");
13 assert_invalid_value("webkitMarginBefore", "24"); 13 assert_invalid_value("webkitMarginBefore", "24");
14 </script> 14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698