Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: LayoutTests/dom/xhtml/level3/core/documentgetxmlencoding05.xhtml

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="uTf-8"?>
2 <!DOCTYPE html [
3 <!ENTITY ent1 'foo'>
4 <!ENTITY ent2 'foo<br/>'>
5 <!ELEMENT html (head, body)>
6 <!ATTLIST html xmlns CDATA #IMPLIED>
7 <!ELEMENT head (title,script*)>
8 <!ELEMENT title (#PCDATA)>
9 <!ELEMENT script (#PCDATA)>
10 <!ATTLIST script
11 src CDATA #IMPLIED
12 type CDATA #IMPLIED
13 charset CDATA #IMPLIED>
14 <!ELEMENT body (p)>
15 <!ATTLIST body onload CDATA #IMPLIED>
16 <!ELEMENT p (#PCDATA|br)*>
17 <!ELEMENT br EMPTY>
18 <!ENTITY ent5 PUBLIC "entityURI" "entityFile" NDATA notation1>
19 <!NOTATION notation1 PUBLIC "notation1File">
20 ]>
21 <html xmlns='http://www.w3.org/1999/xhtml'>
22 <head>
23 <title>test file</title>
24 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF- 8' type='text/javascript' src='documentgetxmlencoding05.js'></script><script typ e='text/javascript'>function loadComplete() { startTest(); }</script></head>
25 <body onload="loadComplete()">
26 <p>bar</p>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698