If I parse this:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style type="text/css">
body > *:not(.app) {
display: none;
}
</style>
</head>
<body>
</body>
</html>
and output the serialization of it, it gives this:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style type="text/css">
body > *:not(.app) {
display: none;
}
</style>
</head>
<body>
</body>
</html>
It breaks the inline style by converting > to >.
If I parse this:
and output the serialization of it, it gives this:
It breaks the inline style by converting
>to>.