Summary

Harness status: OK

Found 5 tests

Details

ResultTest NameMessage
PassComputed style parent (should be null)
Asserts run
Pass
assert_equals(null, null)
    at Test.<anonymous> ( /css/cssom/computed-style-set-property.html:10:5)
PassException thrown when trying to change a computed style declaration via property
Asserts run
Pass
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)
PassException thrown when trying to change a computed style declaration via setProperty
Asserts run
Pass
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)
PassException thrown when trying to change a computed style alias via property
Asserts run
Pass
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)
PassException thrown when trying to change a computed style alias via setProperty
Asserts run
Pass
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)