1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

- HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML

support for SCRIPT and STYLE with help from Bjorn Reese
- test/HTML/* result/HTML/*: added simple testcase and updated
  the existing ones.
Daniel
This commit is contained in:
Daniel Veillard
2000-10-14 23:38:43 +00:00
parent ff9c330753
commit 7eda8452f8
17 changed files with 390 additions and 230 deletions

9
test/HTML/script.html Normal file
View File

@ -0,0 +1,9 @@
<HTML>
<HEAD><TITLE>Script tests</TITLE></HEAD>
<BODY>
<SCRIPT language=javascript>
if (window.open<max) ;
</SCRIPT>
<INPUT ONCLICK="if(window.open<max);">
</BODY>
</HTML>