Pass | Computed style parent (should be null) | Asserts runPass | assert_equals(null, null)
at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:10:5) |
|
Pass | Exception thrown when trying to change a computed style declaration via property | Asserts runPass | assert_throws_dom("NoModificationAllowedError", function "function() { document.defaultView.getComputedStyle(document.body, null).color = "blue"; }")
at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:14:5) |
|
Pass | Exception thrown when trying to change a computed style declaration via setProperty | Asserts runPass | assert_throws_dom("NoModificationAllowedError", function "function() { document.defaultView.getComputedStyle(document.body, null).setProperty("color", "blue"); }")
at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:20:5) |
|
Pass | Exception thrown when trying to change a computed style alias via property | Asserts runPass | assert_throws_dom("NoModificationAllowedError", function "function() { document.defaultView.getComputedStyle(document.body, null).webkitTransition = ""; }")
at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:26:5) |
|
Pass | Exception thrown when trying to change a computed style alias via setProperty | Asserts runPass | assert_throws_dom("NoModificationAllowedError", function "function() { document.defaultView.getComputedStyle(document.body, null).setProperty("webkitTransition", ""); }")
at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:32:5) |
|