Status: PASS | Duration: 112ms | Subtests: 48/48 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| e.style['opacity'] = "exp()" should not set the property value | PASS | |
| e.style['opacity'] = "exp( )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(,)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(, 1)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1 + )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1 - )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1 * )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1 / )" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1 2)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, , 2)" should not set the property value | PASS | |
| e.style['opacity'] = "log()" should not set the property value | PASS | |
| e.style['opacity'] = "log( )" should not set the property value | PASS | |
| e.style['opacity'] = "log(,)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, )" should not set the property value | PASS | |
| e.style['opacity'] = "log(, 1)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1 + )" should not set the property value | PASS | |
| e.style['opacity'] = "log(1 - )" should not set the property value | PASS | |
| e.style['opacity'] = "log(1 * )" should not set the property value | PASS | |
| e.style['opacity'] = "log(1 / )" should not set the property value | PASS | |
| e.style['opacity'] = "log(1 2)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, , 2)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0px)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0s)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0deg)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0Hz)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0dpi)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(0fr)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 1%)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0px)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0s)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0deg)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0Hz)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0dpi)" should not set the property value | PASS | |
| e.style['opacity'] = "exp(1, 0fr)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0px)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0s)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0deg)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0Hz)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0dpi)" should not set the property value | PASS | |
| e.style['opacity'] = "log(0fr)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 1%)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0px)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0s)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0deg)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0Hz)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0dpi)" should not set the property value | PASS | |
| e.style['opacity'] = "log(1, 0fr)" should not set the property value | PASS |
/css/css-values/exp-log-invalid.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-values-4/#exponent-funcs"> <link rel="help" href="https://drafts.csswg.org/css-values-4/#numbers"> <link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-type-checking"> <link rel="author" title="Apple Inc"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="../support/parsing-testcommon.js"></script> <script> function test_invalid_number(value) { test_invalid_value('opacity', value); } // Syntax checking test_invalid_number('exp()'); test_invalid_number('exp( )'); test_invalid_number('exp(,)'); test_invalid_number('exp(1, )'); test_invalid_number('exp(, 1)'); test_invalid_number('exp(1 + )'); test_invalid_number('exp(1 - )'); test_invalid_number('exp(1 * )'); test_invalid_number('exp(1 / )'); test_invalid_number('exp(1 2)'); test_invalid_number('exp(1, , 2)'); test_invalid_number('log()'); test_invalid_number('log( )'); test_invalid_number('log(,)'); test_invalid_number('log(1, )'); test_invalid_number('log(, 1)'); test_invalid_number('log(1 + )'); test_invalid_number('log(1 - )'); test_invalid_number('log(1 * )'); test_invalid_number('log(1 / )'); test_invalid_number('log(1 2)'); test_invalid_number('log(1, , 2)'); // Type checking test_invalid_number('exp(0px)'); test_invalid_number('exp(0s)'); test_invalid_number('exp(0deg)'); test_invalid_number('exp(0Hz)'); test_invalid_number('exp(0dpi)'); test_invalid_number('exp(0fr)'); test_invalid_number('exp(1, 1%)'); test_invalid_number('exp(1, 0px)'); test_invalid_number('exp(1, 0s)'); test_invalid_number('exp(1, 0deg)'); test_invalid_number('exp(1, 0Hz)'); test_invalid_number('exp(1, 0dpi)'); test_invalid_number('exp(1, 0fr)'); test_invalid_number('log(0px)'); test_invalid_number('log(0s)'); test_invalid_number('log(0deg)'); test_invalid_number('log(0Hz)'); test_invalid_number('log(0dpi)'); test_invalid_number('log(0fr)'); test_invalid_number('log(1, 1%)'); test_invalid_number('log(1, 0px)'); test_invalid_number('log(1, 0s)'); test_invalid_number('log(1, 0deg)'); test_invalid_number('log(1, 0Hz)'); test_invalid_number('log(1, 0dpi)'); test_invalid_number('log(1, 0fr)'); </script>