Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 50e04c7

Browse files
authored
Remove tests expecting >64-bit ints (#65)
Fixes https://github.com/dart-lang/html/issues/64
1 parent 82bea83 commit 50e04c7

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: html
2-
version: 0.13.2+2
2+
version: 0.13.3-dev
33
author: Dart Team <[email protected]>
44
description: A library for working with HTML documents. Previously known as html5lib.
55
homepage: https://github.com/dart-lang/html

test/data/tokenizer/test4.test

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,6 @@
152152
"input":"&#4294967361;",
153153
"output":["ParseError", ["Character", "\uFFFD"]]},
154154

155-
{"description":"65-bit hex numeric entity",
156-
"input":"&#x10000000000000041;",
157-
"output":["ParseError", ["Character", "\uFFFD"]]},
158-
159-
{"description":"65-bit decimal numeric entity",
160-
"input":"&#18446744073709551681;",
161-
"output":["ParseError", ["Character", "\uFFFD"]]},
162-
163155
{"description":"Surrogate code point edge cases",
164156
"input":"&#xD7FF;&#xD800;&#xD801;&#xDFFE;&#xDFFF;&#xE000;",
165157
"output":[["Character", "\uD7FF"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD"], "ParseError", ["Character", "\uFFFD\uE000"]]},

0 commit comments

Comments
 (0)