Changeset 127798 in webkit


Ignore:
Timestamp:
Sep 6, 2012 4:40:56 PM (12 years ago)
Author:
abarth@webkit.org
Message:

New tests introduced in r127704 fail
https://bugs.webkit.org/show_bug.cgi?id=95952

Reviewed by Dan Bernstein.

Use the testRunner rather than layoutTestController because
layoutTestControler doesn't exist anymore.

  • fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html:
  • fast/viewport/viewport-limits-adjusted-for-no-user-scale.html:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r127788 r127798  
     12012-09-06  Adam Barth  <abarth@webkit.org>
     2
     3        New tests introduced in r127704 fail
     4        https://bugs.webkit.org/show_bug.cgi?id=95952
     5
     6        Reviewed by Dan Bernstein.
     7
     8        Use the testRunner rather than layoutTestController because
     9        layoutTestControler doesn't exist anymore.
     10
     11        * fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html:
     12        * fast/viewport/viewport-limits-adjusted-for-no-user-scale.html:
     13
    1142012-09-06  Alok Priyadarshi  <alokp@chromium.org>
    215
  • trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html

    r127704 r127798  
    33    <script>
    44        function test() {
    5             if (window.layoutTestController) {
    6                 layoutTestController.dumpAsText();
     5            if (window.testRunner) {
     6                testRunner.dumpAsText();
    77                var viewportConfiguation = internals.configurationForViewport(document, 1, 320, 480, 320, 352);
    88                if (/userScalable true/.test(viewportConfiguation))
  • trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale.html

    r127704 r127798  
    33    <script>
    44        function test() {
    5             if (window.layoutTestController) {
    6                 layoutTestController.dumpAsText();
     5            if (window.testRunner) {
     6                testRunner.dumpAsText();
    77                var viewportConfiguation = internals.configurationForViewport(document, 1, 320, 480, 320, 352);
    88                if (/userScalable false/.test(viewportConfiguation))
  • trunk/LayoutTests/platform/efl/TestExpectations

    r127744 r127798  
    11051105BUGWK95944 : fast/dom/HTMLScriptElement/script-reexecution.html = TEXT
    11061106
    1107 // Fail after r127704.
    1108 BUGWK95952 : fast/viewport/viewport-limits-adjusted-for-no-user-scale.html = TEXT
    1109 BUGWK95952 : fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html = TEXT
    1110 
    11111107// Fails after r127534.
    11121108BUGWK95813 : fast/innerHTML/innerHTML-iframe.html = TEXT
Note: See TracChangeset for help on using the changeset viewer.