Skip to content

Commit

Permalink
Remove tests expecting >64-bit ints (flutter#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Jan 20, 2018
1 parent 82bea83 commit 50e04c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: html
version: 0.13.2+2
version: 0.13.3-dev
author: Dart Team <misc@dartlang.org>
description: A library for working with HTML documents. Previously known as html5lib.
homepage: https://github.com/dart-lang/html
Expand Down
8 changes: 0 additions & 8 deletions test/data/tokenizer/test4.test
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,6 @@
"input":"&#4294967361;",
"output":["ParseError", ["Character", "\uFFFD"]]},

{"description":"65-bit hex numeric entity",
"input":"&#x10000000000000041;",
"output":["ParseError", ["Character", "\uFFFD"]]},

{"description":"65-bit decimal numeric entity",
"input":"&#18446744073709551681;",
"output":["ParseError", ["Character", "\uFFFD"]]},

{"description":"Surrogate code point edge cases",
"input":"&#xD7FF;&#xD800;&#xD801;&#xDFFE;&#xDFFF;&#xE000;",
"output":[["Character", "\uD7FF"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD\uE000"]]},
Expand Down

0 comments on commit 50e04c7

Please sign in to comment.