mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
7 lines
345 B
Plaintext
7 lines
345 B
Plaintext
element.classList initial value: ""
|
|
element.classList after setting classList to "a": "a"
|
|
element.classList after setting className to "": ""
|
|
element.classList after setting to className to "a a b c": "a a b c"
|
|
element.classList after setting to className to " a a b c ": " a a b c "
|
|
element.classList.replace(" ", "") throws "SyntaxError"
|