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

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

Issue 2579693005: Remove legacy constants on Event (Closed)
Patch Set: update newly imported wpt/dom/historical.html Created 3 years, 12 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
OLDNEW
1 GET test 1 GET test
2 2
3 responseText 3 responseText
4 <?xml version="1.0"?> 4 <?xml version="1.0"?>
5 <!DOCTYPE doc [ 5 <!DOCTYPE doc [
6 <!ATTLIST d id ID #IMPLIED> 6 <!ATTLIST d id ID #IMPLIED>
7 ]> 7 ]>
8 <doc> 8 <doc>
9 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar> 9 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
10 <d id="id3">Three</d> 10 <d id="id3">Three</d>
11 </doc> 11 </doc>
12 responseXML serialized 12 responseXML serialized
13 <?xml version="1.0"?><!DOCTYPE doc><doc> 13 <?xml version="1.0"?><!DOCTYPE doc><doc>
14 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar> 14 <foo xmlns="foobar">One</foo> <x:bar xmlns:x="barfoo">Two</x:bar>
15 <d id="id3">Three</d> 15 <d id="id3">Three</d>
16 </doc> 16 </doc>
17 getAllResponseHeaders() 17 getAllResponseHeaders()
18 status 18 status
19 0 19 0
20 statusText 20 statusText
21 readyState 21 readyState
22 4 22 4
23 Event information 23 Event information
24 Event object: [object ProgressEvent] 24 Event object: [object ProgressEvent]
25 Event properties: 25 Event properties:
26 AT_TARGET : '2' 26 AT_TARGET : '2'
27 BLUR : '8192'
28 BUBBLING_PHASE : '3' 27 BUBBLING_PHASE : '3'
29 CAPTURING_PHASE : '1' 28 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' 29 NONE : '0'
45 SELECT : '16384'
46 bubbles : 'false' 30 bubbles : 'false'
47 cancelBubble : 'false' 31 cancelBubble : 'false'
48 cancelable : 'false' 32 cancelable : 'false'
49 composed : 'false' 33 composed : 'false'
50 composedPath : 'function composedPath() { [native code] }' 34 composedPath : 'function composedPath() { [native code] }'
51 currentTarget : '[object XMLHttpRequest]' 35 currentTarget : '[object XMLHttpRequest]'
52 defaultPrevented : 'false' 36 defaultPrevented : 'false'
53 eventPhase : '2' 37 eventPhase : '2'
54 initEvent : 'function initEvent() { [native code] }' 38 initEvent : 'function initEvent() { [native code] }'
55 isTrusted : 'true' 39 isTrusted : 'true'
56 lengthComputable : 'true' 40 lengthComputable : 'true'
57 loaded : '0' 41 loaded : '0'
58 path : '' 42 path : ''
59 preventDefault : 'function preventDefault() { [native code] }' 43 preventDefault : 'function preventDefault() { [native code] }'
60 returnValue : 'true' 44 returnValue : 'true'
61 srcElement : '[object XMLHttpRequest]' 45 srcElement : '[object XMLHttpRequest]'
62 stopImmediatePropagation : 'function stopImmediatePropagation() { [native code] }' 46 stopImmediatePropagation : 'function stopImmediatePropagation() { [native code] }'
63 stopPropagation : 'function stopPropagation() { [native code] }' 47 stopPropagation : 'function stopPropagation() { [native code] }'
64 target : '[object XMLHttpRequest]' 48 target : '[object XMLHttpRequest]'
65 total : '0' 49 total : '0'
66 type : 'load' 50 type : 'load'
67 51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698