Changeset 85012 in webkit


Ignore:
Timestamp:
Apr 26, 2011 9:44:23 PM (13 years ago)
Author:
tony@chromium.org
Message:

2011-04-26 Tony Chang <tony@chromium.org>

Reviewed by Ojan Vafai.

Fix http/tests/security/cross-frame-access-document-direct.html timeout in chromium
https://bugs.webkit.org/show_bug.cgi?id=59376

  • http/tests/security/cross-frame-access-document-direct.html: Include a try/catch for invalid access.
  • platform/chromium/http/tests/security/cross-frame-access-document-direct-expected.txt: Added. Chromium includes a console.log

statement of the invalid access.

  • platform/chromium/test_expectations.txt: Remove passing test.
Location:
trunk/LayoutTests
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r85011 r85012  
     12011-04-26  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        Fix http/tests/security/cross-frame-access-document-direct.html timeout in chromium
     6        https://bugs.webkit.org/show_bug.cgi?id=59376
     7
     8        * http/tests/security/cross-frame-access-document-direct.html: Include a try/catch for invalid access.
     9        * platform/chromium/http/tests/security/cross-frame-access-document-direct-expected.txt: Added. Chromium includes a console.log
     10            statement of the invalid access.
     11        * platform/chromium/test_expectations.txt: Remove passing test.
     12
    1132011-04-26  Levi Weintraub  <leviw@chromium.org>
    214
  • trunk/LayoutTests/http/tests/security/cross-frame-access-document-direct.html

    r42223 r85012  
    88    addEventListener("message", function() {
    99        // Call injected function.
    10         attack();
     10        try {
     11            attack();
     12        } catch (e) {
     13            // V8 throws a TypeError: Cannot set property 'fail' of undefined.
     14        }
    1115
    1216        // Post message to victim to check if it was accessed.
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r85006 r85012  
    14711471BUGCR9786 LINUX MAC : http/tests/security/cross-frame-access-history-prototype.html = FAIL
    14721472BUGCR9786 : http/tests/security/cross-frame-access-location-prototype.html = FAIL
    1473 BUGCR9786 : http/tests/security/cross-frame-access-document-direct.html = TIMEOUT
    14741473
    14751474BUGCR9798 SLOW WIN DEBUG : fast/dom/Window/slow-unload-handler.html = PASS
Note: See TracChangeset for help on using the changeset viewer.