Add DocumentNode and support for <style> tags

This commit is contained in:
2023-05-20 20:18:53 +02:00
parent d6e227af45
commit 1b45767cae
5 changed files with 402 additions and 335 deletions

13
fixtures/complex.html Normal file
View File

@@ -0,0 +1,13 @@
<html>
<head>
<title>Document</title>
<style>
h1 {
font-size: 14px;
}
</style>
</head>
<body>
<h1>Hello</h1>
</body>
</html>