mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
ed97946975
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
231 B
HTML
12 lines
231 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/text-div.html" />
|
|
<style>
|
|
* {
|
|
visibility: visible;
|
|
}
|
|
.d-none,
|
|
.oops::-webkit-jkl() {
|
|
visibility: hidden;
|
|
}
|
|
</style>
|
|
<div class="d-none">Well, hello friends!</div>
|