blob: cd721f3bf26ca2481e5d2f29d35988b13a715d0f [file] [log] [blame]
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="auto"
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height=" 100"
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="100 "
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="100 px"
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="100px;"
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="100px !important"
CONSOLE MESSAGE: Error: Invalid value for <rect> attribute height="{ 100px }"
CONSOLE MESSAGE: Error: Invalid negative value for <rect> attribute height="-100px"
Test that 'with' presentation attribute is parsed with CSS presentation rules.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS computedStyle("height", "auto") is "auto"
PASS computedStyle("height", " 100") is "100px"
PASS computedStyle("height", "100 ") is "100px"
PASS computedStyle("height", "100px") is "100px"
PASS computedStyle("height", "1em") is "16px"
PASS computedStyle("height", "1ex") is "12.8px"
PASS computedStyle("height", "20%") is "20%"
PASS computedStyle("height", "100 px") is "auto"
PASS computedStyle("height", "100px;") is "auto"
PASS computedStyle("height", "100px !important") is "auto"
PASS computedStyle("height", "{ 100px }") is "auto"
PASS computedStyle("height", "-100px") is "auto"
PASS successfullyParsed is true
TEST COMPLETE