Title: [92644] trunk/LayoutTests
Revision
92644
Author
[email protected]
Date
2011-08-08 15:18:38 -0700 (Mon, 08 Aug 2011)

Log Message

Optimize baselines for fast/dom/DOMException.
This patch was created with webkit-patch bulk-optimize-baselines.
(I've manually remove the README file because we don't use these sorts
of README files anymore.)

* platform/chromium-mac/fast/dom/DOMException: Removed.
* platform/chromium-mac/fast/dom/DOMException/EventException-expected.txt: Removed.
* platform/chromium-mac/fast/dom/DOMException/README: Removed.
* platform/chromium-mac/fast/dom/DOMException/RangeException-expected.txt: Removed.
* platform/chromium-mac/fast/dom/DOMException/XPathException-expected.txt: Removed.
* platform/chromium-mac/fast/dom/DOMException/prototype-object-expected.txt: Removed.
* platform/chromium-win/fast/dom/DOMException: Removed.
* platform/chromium-win/fast/dom/DOMException/EventException-expected.txt: Removed.
* platform/chromium-win/fast/dom/DOMException/README: Removed.
* platform/chromium-win/fast/dom/DOMException/RangeException-expected.txt: Removed.
* platform/chromium-win/fast/dom/DOMException/XPathException-expected.txt: Removed.
* platform/chromium-win/fast/dom/DOMException/prototype-object-expected.txt: Removed.
* platform/chromium/fast/dom/DOMException: Added.
* platform/chromium/fast/dom/DOMException/EventException-expected.txt: Added.
* platform/chromium/fast/dom/DOMException/RangeException-expected.txt: Added.
* platform/chromium/fast/dom/DOMException/XPathException-expected.txt: Added.
* platform/chromium/fast/dom/DOMException/prototype-object-expected.txt: Added.

Modified Paths

Added Paths

Removed Paths

  • trunk/LayoutTests/platform/chromium-mac/fast/dom/DOMException/
  • trunk/LayoutTests/platform/chromium-win/fast/dom/DOMException/

Diff

Modified: trunk/LayoutTests/ChangeLog (92643 => 92644)


--- trunk/LayoutTests/ChangeLog	2011-08-08 22:17:46 UTC (rev 92643)
+++ trunk/LayoutTests/ChangeLog	2011-08-08 22:18:38 UTC (rev 92644)
@@ -1,3 +1,28 @@
+2011-08-08  Adam Barth  <[email protected]>
+
+        Optimize baselines for fast/dom/DOMException.
+        This patch was created with webkit-patch bulk-optimize-baselines.
+        (I've manually remove the README file because we don't use these sorts
+        of README files anymore.)
+
+        * platform/chromium-mac/fast/dom/DOMException: Removed.
+        * platform/chromium-mac/fast/dom/DOMException/EventException-expected.txt: Removed.
+        * platform/chromium-mac/fast/dom/DOMException/README: Removed.
+        * platform/chromium-mac/fast/dom/DOMException/RangeException-expected.txt: Removed.
+        * platform/chromium-mac/fast/dom/DOMException/XPathException-expected.txt: Removed.
+        * platform/chromium-mac/fast/dom/DOMException/prototype-object-expected.txt: Removed.
+        * platform/chromium-win/fast/dom/DOMException: Removed.
+        * platform/chromium-win/fast/dom/DOMException/EventException-expected.txt: Removed.
+        * platform/chromium-win/fast/dom/DOMException/README: Removed.
+        * platform/chromium-win/fast/dom/DOMException/RangeException-expected.txt: Removed.
+        * platform/chromium-win/fast/dom/DOMException/XPathException-expected.txt: Removed.
+        * platform/chromium-win/fast/dom/DOMException/prototype-object-expected.txt: Removed.
+        * platform/chromium/fast/dom/DOMException: Added.
+        * platform/chromium/fast/dom/DOMException/EventException-expected.txt: Added.
+        * platform/chromium/fast/dom/DOMException/RangeException-expected.txt: Added.
+        * platform/chromium/fast/dom/DOMException/XPathException-expected.txt: Added.
+        * platform/chromium/fast/dom/DOMException/prototype-object-expected.txt: Added.
+
 2011-08-08  Jian Li  <[email protected]>
 
         Unreviewed, mark preventExtensions.html as failed on chromium.

Added: trunk/LayoutTests/platform/chromium/fast/dom/DOMException/EventException-expected.txt (0 => 92644)


--- trunk/LayoutTests/platform/chromium/fast/dom/DOMException/EventException-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/dom/DOMException/EventException-expected.txt	2011-08-08 22:18:38 UTC (rev 92644)
@@ -0,0 +1,16 @@
+Tests the properties of the EventException object.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS e.toString() is "Error: UNSPECIFIED_EVENT_TYPE_ERR: DOM Events Exception 0"
+PASS Object.prototype.toString.call(e) is "[object EventException]"
+FAIL Object.prototype.toString.call(e.__proto__) should be [object EventExceptionPrototype]. Was [object Object].
+FAIL e.constructor.toString() should be [object EventExceptionConstructor]. Was function EventException() { [native code] }.
+PASS e.constructor is window.EventException
+PASS e.UNSPECIFIED_EVENT_TYPE_ERR is e.constructor.UNSPECIFIED_EVENT_TYPE_ERR
+PASS e.UNSPECIFIED_EVENT_TYPE_ERR is 0
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Added: trunk/LayoutTests/platform/chromium/fast/dom/DOMException/RangeException-expected.txt (0 => 92644)


--- trunk/LayoutTests/platform/chromium/fast/dom/DOMException/RangeException-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/dom/DOMException/RangeException-expected.txt	2011-08-08 22:18:38 UTC (rev 92644)
@@ -0,0 +1,17 @@
+Tests the properties of the RangeException object.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS e.toString() is "Error: INVALID_NODE_TYPE_ERR: DOM Range Exception 2"
+PASS Object.prototype.toString.call(e) is "[object RangeException]"
+FAIL Object.prototype.toString.call(e.__proto__) should be [object RangeExceptionPrototype]. Was [object Object].
+FAIL e.constructor.toString() should be [object RangeExceptionConstructor]. Was function RangeException() { [native code] }.
+PASS e.constructor is window.RangeException
+PASS e.INVALID_NODE_TYPE_ERR is e.constructor.INVALID_NODE_TYPE_ERR
+PASS e.BAD_BOUNDARYPOINTS_ERR is 1
+PASS e.INVALID_NODE_TYPE_ERR is 2
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Added: trunk/LayoutTests/platform/chromium/fast/dom/DOMException/XPathException-expected.txt (0 => 92644)


--- trunk/LayoutTests/platform/chromium/fast/dom/DOMException/XPathException-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/dom/DOMException/XPathException-expected.txt	2011-08-08 22:18:38 UTC (rev 92644)
@@ -0,0 +1,17 @@
+Tests the properties of the XPathException object.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS e.toString() is "Error: TYPE_ERR: DOM XPath Exception 52"
+PASS Object.prototype.toString.call(e) is "[object XPathException]"
+FAIL Object.prototype.toString.call(e.__proto__) should be [object XPathExceptionPrototype]. Was [object Object].
+FAIL e.constructor.toString() should be [object XPathExceptionConstructor]. Was function XPathException() { [native code] }.
+PASS e.constructor is window.XPathException
+PASS e.TYPE_ERR is e.constructor.TYPE_ERR
+PASS e.INVALID_EXPRESSION_ERR is 51
+PASS e.TYPE_ERR is 52
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Added: trunk/LayoutTests/platform/chromium/fast/dom/DOMException/prototype-object-expected.txt (0 => 92644)


--- trunk/LayoutTests/platform/chromium/fast/dom/DOMException/prototype-object-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/dom/DOMException/prototype-object-expected.txt	2011-08-08 22:18:38 UTC (rev 92644)
@@ -0,0 +1,16 @@
+DOMException needs a real prototype: http://bugs.webkit.org/show_bug.cgi?id=16637
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS e.toString() is "Error: HIERARCHY_REQUEST_ERR: DOM Exception 3"
+PASS Object.prototype.toString.call(e) is "[object DOMException]"
+FAIL Object.prototype.toString.call(e.__proto__) should be [object DOMExceptionPrototype]. Was [object Object].
+FAIL e.constructor.toString() should be [object DOMExceptionConstructor]. Was function DOMException() { [native code] }.
+PASS e.constructor is window.DOMException
+PASS e.HIERARCHY_REQUEST_ERR is e.constructor.HIERARCHY_REQUEST_ERR
+PASS e.HIERARCHY_REQUEST_ERR is 3
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to