summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/tokenizer/write-partial-entity.html
blob: 87237b5ebb9c233afd8c4aa806144ddf586a5202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
    <title></title>
    <script>
        if (window.testRunner)
            testRunner.dumpAsText();
    </script>
</head>
<body>
    <p>
        Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13166">http://bugs.webkit.org/show_bug.cgi?id=13166</a>
        REGRESSION (2005-10-16 - 2005-10-19): Ampersands showing up in the last column of the Gmail contacts table</i>.
    </p>
    <p>
        The following lines should all say &ldquo;1 &lt; 2&rdquo;. They should not contain ampersands.
    </p>
    1 <script>document.write("&lt")</script>; 2<br>
    1 <script>document.write("&l")</script>t; 2<br>
    1 <script>document.write("&")</script>lt; 2<br>
    1 <script>document.write("&")</script>#x3c; 2<br>
    1 <script>document.write("&#")</script>x3c; 2<br>
    1 <script>document.write("&#x")</script>3c; 2<br>
    1 <script>document.write("&#x3")</script>c; 2<br>
    1 <script>document.write("&#x3c")</script>; 2<br>
    1 <script>document.write("&#x3c")</script> 2<br>
    1 <script>document.write("&")</script>#x3c; 2<br>
    1 <script>document.write("&")</script>#60; 2<br>
    1 <script>document.write("&#")</script>60; 2<br>
    1 <script>document.write("&#6")</script>0; 2<br>
    1 <script>document.write("&#60")</script>; 2<br>
    1 <script>document.write("&#60")</script> 2<br>
</body>
</html>