Title: [140241] trunk/Tools
Revision
140241
Author
[email protected]
Date
2013-01-19 02:59:45 -0800 (Sat, 19 Jan 2013)

Log Message

Update error regexps so that Parser/html-parser-srcdoc.html can "pass"
https://bugs.webkit.org/show_bug.cgi?id=107367

Reviewed by Ryosuke Niwa.

Using srcdoc instead of document.write changes the error output
ever so slightly.  Clearly we were already trying to ignore these
messages, just not succeeding.  This change makes this new test "pass" correctly.

* Scripts/webkitpy/performance_tests/perftest.py:
(PerfTest):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (140240 => 140241)


--- trunk/Tools/ChangeLog	2013-01-19 10:10:20 UTC (rev 140240)
+++ trunk/Tools/ChangeLog	2013-01-19 10:59:45 UTC (rev 140241)
@@ -1,3 +1,17 @@
+2013-01-19  Eric Seidel  <[email protected]>
+
+        Update error regexps so that Parser/html-parser-srcdoc.html can "pass"
+        https://bugs.webkit.org/show_bug.cgi?id=107367
+
+        Reviewed by Ryosuke Niwa.
+
+        Using srcdoc instead of document.write changes the error output
+        ever so slightly.  Clearly we were already trying to ignore these
+        messages, just not succeeding.  This change makes this new test "pass" correctly.
+
+        * Scripts/webkitpy/performance_tests/perftest.py:
+        (PerfTest):
+
 2013-01-18  Dan Winship  <[email protected]>
 
         REGRESSION (r139071): run-webkit-httpd complains at launch

Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py (140240 => 140241)


--- trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2013-01-19 10:10:20 UTC (rev 140240)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py	2013-01-19 10:59:45 UTC (rev 140241)
@@ -205,7 +205,7 @@
         re.compile(re.escape("""frame "<!--framePath //<!--frame0-->/<!--frame0-->-->" - has 1 onunload handler(s)""")),
         # Following is for html5.html
         re.compile(re.escape("""Blocked access to external URL http://www.whatwg.org/specs/web-apps/current-work/""")),
-        re.compile(r"CONSOLE MESSAGE: Blocked script execution in '[A-Za-z0-9\-\.]+' because the document's frame is sandboxed and the 'allow-scripts' permission is not set."),
+        re.compile(r"CONSOLE MESSAGE: (line \d+: )?Blocked script execution in '[A-Za-z0-9\-\.:]+' because the document's frame is sandboxed and the 'allow-scripts' permission is not set."),
         # Dromaeo reports values for subtests. Ignore them for now.
         re.compile(r'(?P<name>.+): \[(?P<values>(\d+(.\d+)?,\s+)*\d+(.\d+)?)\]'),
     ]
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to