mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
409 B
HTML
26 lines
409 B
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<?foo bar?>
|
|
<html>
|
|
<head>
|
|
<title>Title</title>
|
|
<script>
|
|
var s = "<script>foo</script>";
|
|
<!--
|
|
var s = "<script>foo</script>";
|
|
-->
|
|
</script>
|
|
<style>
|
|
/* <foo/> */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Entity: & </p>
|
|
<iframe><img></iframe>
|
|
<noscript><p>Not para</p></noscript>
|
|
<svg>
|
|
<title><![CDATA[bar]]></title>
|
|
<script><!-- this is a comment --></script>
|
|
</svg>
|
|
</body>
|
|
</html>
|