Title: [98865] trunk/LayoutTests
Revision
98865
Author
[email protected]
Date
2011-10-31 10:46:17 -0700 (Mon, 31 Oct 2011)

Log Message

Unreviewed, expectations for fast/js tests.

* platform/chromium/fast/js/regexp-caching-expected.txt: Added.
* platform/chromium/test_expectations.txt:

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (98864 => 98865)


--- trunk/LayoutTests/ChangeLog	2011-10-31 17:43:06 UTC (rev 98864)
+++ trunk/LayoutTests/ChangeLog	2011-10-31 17:46:17 UTC (rev 98865)
@@ -1,3 +1,10 @@
+2011-10-31  John Gregg  <[email protected]>
+
+        Unreviewed, expectations for fast/js tests.
+
+        * platform/chromium/fast/js/regexp-caching-expected.txt: Added.
+        * platform/chromium/test_expectations.txt:
+
 2011-10-31  Andrey Kosyakov  <[email protected]>
 
         Unreviewed tests rebaseline following r98852.

Added: trunk/LayoutTests/platform/chromium/fast/js/regexp-caching-expected.txt (0 => 98865)


--- trunk/LayoutTests/platform/chromium/fast/js/regexp-caching-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/js/regexp-caching-expected.txt	2011-10-31 17:46:17 UTC (rev 98865)
@@ -0,0 +1,95 @@
+This test checks our implementation of the special RegExp member variables.
+
+Properties of RegExp at startup:
+$1: {} (read-only)
+$2: {} (read-only)
+$3: {} (read-only)
+$4: {} (read-only)
+$5: {} (read-only)
+$6: {} (read-only)
+$7: {} (read-only)
+$8: {} (read-only)
+$9: {} (read-only)
+input: {} (read-write)
+lastMatch: {} (read-only)
+lastParen: {} (read-only)
+leftContext: {} (read-only)
+multiline: {false} (read-write)
+rightContext: {} (read-only)
+
+Properties of RegExp after /(1)(2)(3)(4)(5)(6)(7)(8)(9)(0)/.exec(<1234567890>):
+$1: {1}
+$2: {2}
+$3: {3}
+$4: {4}
+$5: {5}
+$6: {6}
+$7: {7}
+$8: {8}
+$9: {9}
+input: {<1234567890>}
+lastMatch: {1234567890}
+lastParen: {0}
+leftContext: {<}
+multiline: {false}
+rightContext: {>}
+
+RegExp.$0 does not exist
+RegExp.$10 does not exist
+RegExp uses RegExp.input
+RegExp.multiline coerces values to booleans
+RegExp.input coerces values to strings
+
+Properties of RegExp after /(1)(2)(3)(4)(5)(6)(7)(8)(9)(0)/.exec(XXX):
+$1: {1}
+$2: {2}
+$3: {3}
+$4: {4}
+$5: {5}
+$6: {6}
+$7: {7}
+$8: {8}
+$9: {9}
+input: {0}
+lastMatch: {1234567890}
+lastParen: {0}
+leftContext: {<}
+multiline: {true}
+rightContext: {>}
+
+---------- [Cleared RegExp values] ----------
+Properties of RegExp after <1234567890>.search(/(1)(2)(3)(4)(5)(6)(7)(8)(9)(0)/):
+$1: {1}
+$2: {2}
+$3: {3}
+$4: {4}
+$5: {5}
+$6: {6}
+$7: {7}
+$8: {8}
+$9: {9}
+input: {<1234567890>}
+lastMatch: {1234567890}
+lastParen: {0}
+leftContext: {<}
+multiline: {true}
+rightContext: {>}
+
+---------- [Cleared RegExp values] ----------
+Properties of RegExp after <1234567890>.replace(/(1)(2)(3)(4)(5)(6)(7)(8)(9)(0)/):
+$1: {1}
+$2: {2}
+$3: {3}
+$4: {4}
+$5: {5}
+$6: {6}
+$7: {7}
+$8: {8}
+$9: {9}
+input: {<1234567890>}
+lastMatch: {1234567890}
+lastParen: {0}
+leftContext: {<}
+multiline: {true}
+rightContext: {>}
+

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (98864 => 98865)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-10-31 17:43:06 UTC (rev 98864)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-10-31 17:46:17 UTC (rev 98865)
@@ -3922,6 +3922,8 @@
 BUGWK71127 : fast/js/array-functions-non-arrays.html = TEXT
 BUGWK71127 : fast/js/toString-overrides.html = TEXT
 BUGWK71127 : fast/js/toString-recursion.html = TEXT
+BUGWK71127 : fast/js/kde/RegExp.html = TEXT
+BUGWK71127 : fast/js/exception-sequencing-binops2.html = TEXT
 
 BUGWK71139 SNOWLEOPARD : http/tests/security/cross-frame-access-custom.html = CRASH PASS
 BUGWK71139 SNOWLEOPARD : fast/frames/content-opacity-2.html = CRASH PASS
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to