d1f780df0b
also gets the tests running Changes to scripts: * pkg/pkg.gyp: add 'third_party' to list of folders to search * tools/publish_pkg.py: update copyright year * tools/publish_all_pkgs.py: also include pkg/third_party Changes to html5lib: * pubspec.yaml -- removed versions * README.md -- removed some historical notes * added html5lib.status * test/browser -- rename browser_tests to browser_test so test framework finds it * test/parser_test.dart, test/parser_feature_test.dart -- moved dart:io test into parser_test so parser_feature_test can work in browser * test/support.dart -- now finds the data folder relative to entry point script * test/support.dart -- rename "pathos" import to "path" Not changed: * ./test/run.sh still works for testing, in addition to ./tools/test.dart R=dgrove@google.com, ricow@google.com, sigmund@google.com Review URL: https://codereview.chromium.org//22375011 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26152 260f80e4-7a28-3924-810f-c04153c831b5
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
#data
|
|
<input type="hidden"><frameset>
|
|
#errors
|
|
21: Start tag seen without seeing a doctype first. Expected “<!DOCTYPE html>”.
|
|
31: “frameset” start tag seen.
|
|
31: End of file seen and there were open elements.
|
|
#document
|
|
| <html>
|
|
| <head>
|
|
| <frameset>
|
|
|
|
#data
|
|
<!DOCTYPE html><table><caption><svg>foo</table>bar
|
|
#errors
|
|
47: End tag “table” did not match the name of the current open element (“svg”).
|
|
47: “table” closed but “caption” was still open.
|
|
47: End tag “table” seen, but there were open elements.
|
|
36: Unclosed element “svg”.
|
|
#document
|
|
| <!DOCTYPE html>
|
|
| <html>
|
|
| <head>
|
|
| <body>
|
|
| <table>
|
|
| <caption>
|
|
| <svg svg>
|
|
| "foo"
|
|
| "bar"
|
|
|
|
#data
|
|
<table><tr><td><svg><desc><td></desc><circle>
|
|
#errors
|
|
7: Start tag seen without seeing a doctype first. Expected “<!DOCTYPE html>”.
|
|
30: A table cell was implicitly closed, but there were open elements.
|
|
26: Unclosed element “desc”.
|
|
20: Unclosed element “svg”.
|
|
37: Stray end tag “desc”.
|
|
45: End of file seen and there were open elements.
|
|
45: Unclosed element “circle”.
|
|
7: Unclosed element “table”.
|
|
#document
|
|
| <html>
|
|
| <head>
|
|
| <body>
|
|
| <table>
|
|
| <tbody>
|
|
| <tr>
|
|
| <td>
|
|
| <svg svg>
|
|
| <svg desc>
|
|
| <td>
|
|
| <circle>
|