diff options
author | Nigel Tao <nigeltao@golang.org> | 2010-06-15 09:07:47 +1000 |
---|---|---|
committer | Nigel Tao <nigeltao@golang.org> | 2010-06-15 09:07:47 +1000 |
commit | 5ea315adf5f636ef12759f80406a0af5572ac2a3 (patch) | |
tree | da9bf8c530ceb976888ba8539494393a2e328a31 | |
parent | c5b4c61e7eaa898908a3cbd4656d1b45f3214cb0 (diff) | |
download | golang-5ea315adf5f636ef12759f80406a0af5572ac2a3.tar.gz |
html: sync testdata/webkit to match WebKit tip.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1701041
-rw-r--r-- | src/pkg/html/testdata/webkit/webkit01.dat | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/pkg/html/testdata/webkit/webkit01.dat b/src/pkg/html/testdata/webkit/webkit01.dat index 5adf1bb21..544da9e8a 100644 --- a/src/pkg/html/testdata/webkit/webkit01.dat +++ b/src/pkg/html/testdata/webkit/webkit01.dat @@ -165,3 +165,47 @@ console.log("FOO<span>BAR</span>BAZ"); | <html> | <head> | <body> + +#data +<div FOO ><img><img></div> +#errors +#document +| <html> +| <head> +| <body> +| <div> +| foo="" +| <img> +| <img> + +#data +<p>Test</p<p>Test2</p> +#errors +#document +| <html> +| <head> +| <body> +| <p> +| "Test" +| "Test2" + +#data +<rdar://problem/6869687> +#errors +#document +| <html> +| <head> +| <body> +| <rdar:> +| 6869687="" +| problem="" + +#data +<A>test< /A> +#errors +#document +| <html> +| <head> +| <body> +| <a> +| "test< /A>" |