Changeset 140241 in webkit


Ignore:
Timestamp:
Jan 19, 2013 2:59:45 AM (11 years ago)
Author:
eric@webkit.org
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r140224 r140241  
     12013-01-19  Eric Seidel  <eric@webkit.org>
     2
     3        Update error regexps so that Parser/html-parser-srcdoc.html can "pass"
     4        https://bugs.webkit.org/show_bug.cgi?id=107367
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Using srcdoc instead of document.write changes the error output
     9        ever so slightly.  Clearly we were already trying to ignore these
     10        messages, just not succeeding.  This change makes this new test "pass" correctly.
     11
     12        * Scripts/webkitpy/performance_tests/perftest.py:
     13        (PerfTest):
     14
    1152013-01-18  Dan Winship  <danw@gnome.org>
    216
  • trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py

    r140070 r140241  
    206206        # Following is for html5.html
    207207        re.compile(re.escape("""Blocked access to external URL http://www.whatwg.org/specs/web-apps/current-work/""")),
    208         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."),
     208        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."),
    209209        # Dromaeo reports values for subtests. Ignore them for now.
    210210        re.compile(r'(?P<name>.+): \[(?P<values>(\d+(.\d+)?,\s+)*\d+(.\d+)?)\]'),
Note: See TracChangeset for help on using the changeset viewer.