Summary

Harness status: OK

Found 3 tests

Details

ResultTest NameMessage
PassHTMLElement's CSSStyleDeclaration is mutable
Asserts run
Pass
assert_equals("10px", "10px", "setting via style property")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:28:17)
Pass
assert_equals("10px", "10px", "setting via cssText")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:32:17)
PassgetComputedStyle's CSSStyleDeclaration is not mutable
Asserts run
Pass
assert_throws_dom("NO_MODIFICATION_ALLOWED_ERR", function "function(){                     style.width = '10px';                 }")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:42:17)
PassStyleSheet's CSSStyleDeclaration is mutable
Asserts run
Pass
assert_equals("15px", "15px", "width value is correct")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:53:17)
Pass
assert_equals("25px", "25px", "width value is mutable")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:57:17)
Pass
assert_equals("25px", "25px", "styleSheet change is live and accesible via getComputedStyle")
    at Test.<anonymous> ( /css/cssom/cssstyledeclaration-mutability.html:61:17)