Title: [127798] trunk/LayoutTests
Revision
127798
Author
[email protected]
Date
2012-09-06 16:40:56 -0700 (Thu, 06 Sep 2012)

Log 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:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (127797 => 127798)


--- trunk/LayoutTests/ChangeLog	2012-09-06 23:23:50 UTC (rev 127797)
+++ trunk/LayoutTests/ChangeLog	2012-09-06 23:40:56 UTC (rev 127798)
@@ -1,3 +1,16 @@
+2012-09-06  Adam Barth  <[email protected]>
+
+        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:
+
 2012-09-06  Alok Priyadarshi  <[email protected]>
 
         [chromium] Remove failures for acceletared-drawing tests.

Modified: trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html (127797 => 127798)


--- trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html	2012-09-06 23:23:50 UTC (rev 127797)
+++ trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html	2012-09-06 23:40:56 UTC (rev 127798)
@@ -2,8 +2,8 @@
     <meta name="viewport" content="width=device-width, user-scalable=yes, maximum-scale=3, minimum-scale=1">
     <script>
         function test() {
-            if (window.layoutTestController) {
-                layoutTestController.dumpAsText();
+            if (window.testRunner) {
+                testRunner.dumpAsText();
                 var viewportConfiguation = internals.configurationForViewport(document, 1, 320, 480, 320, 352);
                 if (/userScalable true/.test(viewportConfiguation))
                     alert("PASS");

Modified: trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale.html (127797 => 127798)


--- trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale.html	2012-09-06 23:23:50 UTC (rev 127797)
+++ trunk/LayoutTests/fast/viewport/viewport-limits-adjusted-for-no-user-scale.html	2012-09-06 23:40:56 UTC (rev 127798)
@@ -2,8 +2,8 @@
     <meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=3, minimum-scale=1">
     <script>
         function test() {
-            if (window.layoutTestController) {
-                layoutTestController.dumpAsText();
+            if (window.testRunner) {
+                testRunner.dumpAsText();
                 var viewportConfiguation = internals.configurationForViewport(document, 1, 320, 480, 320, 352);
                 if (/userScalable false/.test(viewportConfiguation))
                     alert("PASS");

Modified: trunk/LayoutTests/platform/efl/TestExpectations (127797 => 127798)


--- trunk/LayoutTests/platform/efl/TestExpectations	2012-09-06 23:23:50 UTC (rev 127797)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2012-09-06 23:40:56 UTC (rev 127798)
@@ -1104,10 +1104,6 @@
 // Fails after r127698.
 BUGWK95944 : fast/dom/HTMLScriptElement/script-reexecution.html = TEXT
 
-// Fail after r127704.
-BUGWK95952 : fast/viewport/viewport-limits-adjusted-for-no-user-scale.html = TEXT
-BUGWK95952 : fast/viewport/viewport-limits-adjusted-for-no-user-scale-control.html = TEXT
-
 // Fails after r127534.
 BUGWK95813 : fast/innerHTML/innerHTML-iframe.html = TEXT
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to