Title: [100259] trunk/LayoutTests
Revision
100259
Author
o...@webkit.org
Date
2011-11-15 02:59:07 -0800 (Tue, 15 Nov 2011)

Log Message

[Qt] Unviewed fix after r100254, because committed results was incorrect.

* platform/qt/fast/dom/Window/window-properties-expected.png:
* platform/qt/fast/dom/Window/window-properties-expected.txt:
* platform/qt/fast/dom/Window/window-property-descriptors-expected.png:
* platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
* platform/qt/fast/dom/constructed-objects-prototypes-expected.png: Added.
* platform/qt/fast/dom/constructed-objects-prototypes-expected.txt: Added.
* platform/qt/fast/js/global-constructors-expected.png:
* platform/qt/fast/js/global-constructors-expected.txt:

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (100258 => 100259)


--- trunk/LayoutTests/ChangeLog	2011-11-15 10:52:27 UTC (rev 100258)
+++ trunk/LayoutTests/ChangeLog	2011-11-15 10:59:07 UTC (rev 100259)
@@ -1,3 +1,16 @@
+2011-11-15  Csaba Osztrogonác  <o...@webkit.org>
+
+        [Qt] Unviewed fix after r100254, because committed results was incorrect.
+
+        * platform/qt/fast/dom/Window/window-properties-expected.png:
+        * platform/qt/fast/dom/Window/window-properties-expected.txt:
+        * platform/qt/fast/dom/Window/window-property-descriptors-expected.png:
+        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/qt/fast/dom/constructed-objects-prototypes-expected.png: Added.
+        * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt: Added.
+        * platform/qt/fast/js/global-constructors-expected.png:
+        * platform/qt/fast/js/global-constructors-expected.txt:
+
 2011-11-15  Tony Gentilcore  <to...@chromium.org>
 
         media/track/track-webvtt-tc003-newlines.html is flaky

Modified: trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.png


(Binary files differ)

Modified: trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt (100258 => 100259)


--- trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt	2011-11-15 10:52:27 UTC (rev 100258)
+++ trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt	2011-11-15 10:59:07 UTC (rev 100259)
@@ -2465,6 +2465,7 @@
 window.onmousewheel [null]
 window.onoffline [null]
 window.ononline [null]
+window.onorientationchange [null]
 window.onpagehide [null]
 window.onpageshow [null]
 window.onpause [null]
@@ -2498,6 +2499,7 @@
 window.onwebkittransitionend [null]
 window.open [function]
 window.openDatabase [function]
+window.orientation [number]
 window.outerHeight [number]
 window.outerWidth [number]
 window.pageXOffset [number]

Modified: trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.png


(Binary files differ)

Modified: trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.txt (100258 => 100259)


--- trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.txt	2011-11-15 10:52:27 UTC (rev 100258)
+++ trunk/LayoutTests/platform/qt/fast/dom/Window/window-property-descriptors-expected.txt	2011-11-15 10:59:07 UTC (rev 100259)
@@ -43,6 +43,8 @@
 PASS typeof Object.getOwnPropertyDescriptor(window, 'DOMStringMap') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'DOMTokenList') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'Date') is 'object'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'DeviceMotionEvent') is 'object'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'DeviceOrientationEvent') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'Document') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'DocumentFragment') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'DocumentType') is 'object'
@@ -388,6 +390,7 @@
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onclick') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'oncontextmenu') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'ondblclick') is 'object'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'ondevicemotion') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'ondrag') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'ondragend') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'ondragenter') is 'object'
@@ -419,6 +422,7 @@
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onmousewheel') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onoffline') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'ononline') is 'object'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'onorientationchange') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onpagehide') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onpageshow') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onpause') is 'object'
@@ -450,6 +454,7 @@
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onwebkitanimationiteration') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onwebkitanimationstart') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'onwebkittransitionend') is 'object'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'orientation') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'outerHeight') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'outerWidth') is 'object'
 PASS typeof Object.getOwnPropertyDescriptor(window, 'pageXOffset') is 'object'

Added: trunk/LayoutTests/platform/qt/fast/dom/constructed-objects-prototypes-expected.png


(Binary files differ)
Property changes on: trunk/LayoutTests/platform/qt/fast/dom/constructed-objects-prototypes-expected.png ___________________________________________________________________

Added: svn:mime-type

Added: trunk/LayoutTests/platform/qt/fast/dom/constructed-objects-prototypes-expected.txt (0 => 100259)


--- trunk/LayoutTests/platform/qt/fast/dom/constructed-objects-prototypes-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/qt/fast/dom/constructed-objects-prototypes-expected.txt	2011-11-15 10:59:07 UTC (rev 100259)
@@ -0,0 +1,63 @@
+Make sure prototypes are set up using the window a property came from, instead of the lexical global object.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS (new inner.Audio()).isInner is true
+PASS (new inner.Audio()).constructor.isInner is true
+PASS (new inner.BeforeLoadEvent()).isInner is true
+PASS (new inner.BeforeLoadEvent()).constructor.isInner is true
+PASS (new inner.CloseEvent()).isInner is true
+PASS (new inner.CloseEvent()).constructor.isInner is true
+PASS (new inner.CustomEvent()).isInner is true
+PASS (new inner.CustomEvent()).constructor.isInner is true
+PASS (new inner.DOMParser()).isInner is true
+PASS (new inner.DOMParser()).constructor.isInner is true
+PASS (new inner.ErrorEvent()).isInner is true
+PASS (new inner.ErrorEvent()).constructor.isInner is true
+PASS (new inner.Event()).isInner is true
+PASS (new inner.Event()).constructor.isInner is true
+PASS (new inner.FormData()).isInner is true
+PASS (new inner.FormData()).constructor.isInner is true
+PASS (new inner.HashChangeEvent()).isInner is true
+PASS (new inner.HashChangeEvent()).constructor.isInner is true
+PASS (new inner.Image()).isInner is true
+PASS (new inner.Image()).constructor.isInner is true
+PASS (new inner.MediaController()).isInner is true
+PASS (new inner.MediaController()).constructor.isInner is true
+PASS (new inner.MessageChannel()).isInner is true
+PASS (new inner.MessageChannel()).constructor.isInner is true
+PASS (new inner.MessageEvent()).isInner is true
+PASS (new inner.MessageEvent()).constructor.isInner is true
+PASS (new inner.Option()).isInner is true
+PASS (new inner.Option()).constructor.isInner is true
+PASS (new inner.OverflowEvent()).isInner is true
+PASS (new inner.OverflowEvent()).constructor.isInner is true
+PASS (new inner.PageTransitionEvent()).isInner is true
+PASS (new inner.PageTransitionEvent()).constructor.isInner is true
+PASS (new inner.PopStateEvent()).isInner is true
+PASS (new inner.PopStateEvent()).constructor.isInner is true
+PASS (new inner.ProgressEvent()).isInner is true
+PASS (new inner.ProgressEvent()).constructor.isInner is true
+PASS (new inner.WebKitAnimationEvent()).isInner is true
+PASS (new inner.WebKitAnimationEvent()).constructor.isInner is true
+PASS (new inner.WebKitCSSMatrix()).isInner is true
+PASS (new inner.WebKitCSSMatrix()).constructor.isInner is true
+PASS (new inner.WebKitPoint()).isInner is true
+PASS (new inner.WebKitPoint()).constructor.isInner is true
+PASS (new inner.WebKitTransitionEvent()).isInner is true
+PASS (new inner.WebKitTransitionEvent()).constructor.isInner is true
+PASS (new inner.Worker('foo')).isInner is true
+PASS (new inner.Worker('foo')).constructor.isInner is true
+PASS (new inner.XMLHttpRequest()).isInner is true
+PASS (new inner.XMLHttpRequest()).constructor.isInner is true
+PASS (new inner.XMLSerializer()).isInner is true
+PASS (new inner.XMLSerializer()).constructor.isInner is true
+PASS (new inner.XPathEvaluator()).isInner is true
+PASS (new inner.XPathEvaluator()).constructor.isInner is true
+PASS (new inner.XSLTProcessor()).isInner is true
+PASS (new inner.XSLTProcessor()).constructor.isInner is true
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Modified: trunk/LayoutTests/platform/qt/fast/js/global-constructors-expected.png


(Binary files differ)

Modified: trunk/LayoutTests/platform/qt/fast/js/global-constructors-expected.txt (100258 => 100259)


--- trunk/LayoutTests/platform/qt/fast/js/global-constructors-expected.txt	2011-11-15 10:52:27 UTC (rev 100258)
+++ trunk/LayoutTests/platform/qt/fast/js/global-constructors-expected.txt	2011-11-15 10:59:07 UTC (rev 100259)
@@ -40,6 +40,8 @@
 PASS DOMStringList.toString() is '[object DOMStringListConstructor]'
 PASS DOMStringMap.toString() is '[object DOMStringMapConstructor]'
 PASS DOMTokenList.toString() is '[object DOMTokenListConstructor]'
+PASS DeviceMotionEvent.toString() is '[object DeviceMotionEventConstructor]'
+PASS DeviceOrientationEvent.toString() is '[object DeviceOrientationEventConstructor]'
 PASS Document.toString() is '[object DocumentConstructor]'
 PASS DocumentFragment.toString() is '[object DocumentFragmentConstructor]'
 PASS DocumentType.toString() is '[object DocumentTypeConstructor]'
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to