- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / cssom-computed-style-expected.txt
1 This tests Javascript access to CSS variables via getComputedStyle.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6 PASS computedStyle.var.toString() is "[object CSSVariablesMap]"
7 PASS computedStyle.var === computedStyle.var is true
8 PASS computedStyle.var.set("create", "test") threw exception NoModificationAllowedError: Failed to set the 'create' property on a computed 'CSSStyleDeclaration': computed styles are read-only..
9 PASS computedStyle.var.size is 3
10 PASS computedBodyStyle.var.size is 0
11 PASS computedStyle.var.get("stylesheet") is "pass"
12 PASS computedStyle.var.get("inherited") is "pass"
13 PASS computedStyle.var.get("inline") is "pass"
14 PASS computedBodyStyle.var.get("non-existent") is ""
15 PASS forEachIterations[0] is ["pass", "inherited", "[object CSSVariablesMap]"]
16 PASS forEachIterations[1] is ["pass", "inline", "[object CSSVariablesMap]"]
17 PASS forEachIterations[2] is ["pass", "stylesheet", "[object CSSVariablesMap]"]
18 PASS forEachIterations.length is 3
19 PASS emptyVarForEachIterations.length is 0
20 PASS computedStyle.var.set("inline", "fail") threw exception NoModificationAllowedError: Failed to set the 'inline' property on a computed 'CSSStyleDeclaration': computed styles are read-only..
21 PASS computedStyle.var.clear() threw exception NoModificationAllowedError: Failed to clear variables from a computed 'CSSStyleDeclaration': computed styles are read-only..
22 PASS computedStyle.var.delete("inline") is false
23 PASS computedStyle.var.get("inline") is "pass"
24 PASS successfullyParsed is true
25
26 TEST COMPLETE
27