flutter_flutter/tests/parser/script-expected.txt
Elliott Sprehn 0275d42ac7 Add the <t> element and ignore whitespace outside it.
We now only preserve the whitespace inside a <t> element inside
the parser. This removes the known n^2 from reattaching whitespace
which should make parsing and appending nodes faster. I also
removed the dead WhitespaceMode code from the parser, and made
the dom-seralizer.sky auto indent the markup so the test output
would be readable.

R=abarth@chromium.org

Review URL: https://codereview.chromium.org/867963006
2015-01-23 16:50:00 -08:00

49 lines
1.2 KiB
Plaintext

ERROR: Uncaught SyntaxError: Unexpected token <
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:6
ERROR: Uncaught SyntaxError: Unexpected token <
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:14
ERROR: Uncaught SyntaxError: Unexpected token <
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:21
ERROR: Uncaught ReferenceError: TEST is not defined
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:27
ERROR: Uncaught SyntaxError: Invalid regular expression: missing /
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:34
ERROR: Uncaught SyntaxError: Invalid regular expression: missing /
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:38
ERROR: Uncaught SyntaxError: Unexpected token }
SOURCE: http://127.0.0.1:8000/sky/tests/parser/script.sky:43
<html>
<import src="../resources/dump-as-markup.sky"></import>
<body>
<script>
TEST <a></a>
</script>
<SCRIPT>
TEST <a></a>
</SCRIPT>
<script>
<SCRIPT>
TEST <a></a>
</SCRIPT>
</script>
<SCRIPT>
<script>
TEST <a></a>
</SCRIPT>
</script>
</SCRIPT>
<script> TEST </script>
&lt;
script
&gt; TEST <script> TEST </
script>
</script>
<script> TEST </scrip>
</script>
<script> TEST <//script>
</script>
</body>
</html>