mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:54:57 +00:00

As outlined in: https://www.w3.org/TR/selectors-4/#compat We now do not treat unknown webkit pseudo-elements as invalid at parse time, and also support serializing these elements. Fixes: #21959
12 lines
230 B
HTML
12 lines
230 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/text-div.html" />
|
|
<style>
|
|
* {
|
|
visibility: hidden;
|
|
}
|
|
.d-none,
|
|
.oops::-webkit-asdf {
|
|
visibility: visible;
|
|
}
|
|
</style>
|
|
<div class="d-none">Well, hello friends!</div>
|