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

Side by Side Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom-expected.txt

Issue 2529043002: [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap (Closed)
Patch Set: Fix typo Created 4 years 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
(Empty)
1 This is a testharness.js-based test.
2 PASS Setting bottom to auto
3 PASS Setting bottom to initial
4 PASS Setting bottom to inherit
5 PASS Setting bottom to unset
6 PASS Setting bottom to CSSSimpleLength with value 1px
7 PASS Setting bottom to CSSSimpleLength with value 2%
8 PASS Setting bottom to CSSSimpleLength with value 3em
9 PASS Setting bottom to CSSCalcLength with value calc(10% + 1px)
10 PASS Setting bottom to invalid value CSSNumberValue throws
11 PASS Setting bottom to invalid value null throws
12 PASS Setting bottom to invalid value undefined throws
13 PASS Setting bottom to invalid value true throws
14 PASS Setting bottom to invalid value false throws
15 PASS Setting bottom to invalid value 1 throws
16 PASS Setting bottom to invalid value hello throws
17 PASS Setting bottom to invalid value [object Object] throws
18 PASS Setting bottom to invalid value CSSKeywordValue throws
19 FAIL Getting bottom when it is set to auto assert_true: result instanceof CSSKey wordValue: expected true got false
20 FAIL Getting bottom when it is set to initial assert_true: result instanceof CSS KeywordValue: expected true got false
21 FAIL Getting bottom when it is set to inherit assert_true: result instanceof CSS KeywordValue: expected true got false
22 FAIL Getting bottom when it is set to unset assert_true: result instanceof CSSKe ywordValue: expected true got false
23 PASS Getting bottom with a CSSSimpleLength whose value is 1px
24 PASS Getting bottom with a CSSSimpleLength whose value is 2%
25 PASS Getting bottom with a CSSSimpleLength whose value is 3em
26 FAIL Getting bottom with a CSSCalcLength whose value is calc(10% + 1px) assert_e quals: typeof result expected "CSSCalcLength" but got "CSSStyleValue"
27 PASS getAll for single-valued bottom
28 PASS Delete bottom removes the value form the styleMap
29 PASS bottom shows up in getProperties
30 PASS Setting bottom to a sequence throws
31 PASS Appending to bottom throws
32 Harness: the test ran to completion.
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698