1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-12 09:17:37 +03:00
libxml2/test/HTML/noscript.html
Denis Pauk a0cd075d94 HTML parser error with <noscript> in the <head>
For https://bugzilla.gnome.org/show_bug.cgi?id=615785
When the <noscript> is found, <head> is closed and a <body> element is created.
The real <body id="xxx"> gets skipped over, so I can't see any of the
body's attributes.
Just don't close <head> when encountering a <noscript>
Add a regression test too
2012-05-11 19:31:12 +08:00

11 lines
206 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>omg</title>
<noscript><link rel="stylesheet" href="http://foo.com"></noscript>
</head>
<body id="xxx">
<p>yo</p>
</body>
</html>