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

Side by Side Diff: LayoutTests/fast/xmlhttprequest/xmlhttprequest-get-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (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 GET test
2
3 responseText
4 <?xml version="1.0"?>
5 <!DOCTYPE doc [
6 <!ATTLIST d id ID #IMPLIED>
7 ]>
8 <doc>
9 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
10 <d id="id3">Three</d>
11 </doc>
12 responseXML serialized
13 <?xml version="1.0"?><!DOCTYPE doc><doc>
14 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
15 <d id="id3">Three</d>
16 </doc>
17 getAllResponseHeaders()
18 status
19 0
20 statusText
21 readyState
22 4
23 Event information
24 Event object: [object XMLHttpRequestProgressEvent]
25 Event properties:
26 AT_TARGET : '2'
27 BLUR : '8192'
28 BUBBLING_PHASE : '3'
29 CAPTURING_PHASE : '1'
30 CHANGE : '32768'
31 CLICK : '64'
32 DBLCLICK : '128'
33 DRAGDROP : '2048'
34 FOCUS : '4096'
35 KEYDOWN : '256'
36 KEYPRESS : '1024'
37 KEYUP : '512'
38 MOUSEDOWN : '1'
39 MOUSEDRAG : '32'
40 MOUSEMOVE : '16'
41 MOUSEOUT : '8'
42 MOUSEOVER : '4'
43 MOUSEUP : '2'
44 NONE : '0'
45 SELECT : '16384'
46 bubbles : 'false'
47 cancelBubble : 'false'
48 cancelable : 'true'
49 clipboardData : 'undefined'
50 currentTarget : '[object XMLHttpRequest]'
51 defaultPrevented : 'false'
52 eventPhase : '2'
53 initEvent : 'function initEvent() {
54 [native code]
55 }'
56 lengthComputable : 'false'
57 loaded : '0'
58 position : '0'
59 preventDefault : 'function preventDefault() {
60 [native code]
61 }'
62 returnValue : 'true'
63 srcElement : '[object XMLHttpRequest]'
64 stopImmediatePropagation : 'function stopImmediatePropagation() {
65 [native code]
66 }'
67 stopPropagation : 'function stopPropagation() {
68 [native code]
69 }'
70 target : '[object XMLHttpRequest]'
71 total : '0'
72 totalSize : '0'
73 type : 'load'
74
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698