Title: [127389] trunk/LayoutTests
Revision
127389
Author
[email protected]
Date
2012-09-02 10:09:26 -0700 (Sun, 02 Sep 2012)

Log Message

fast/html/marquee-alternate.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=94130

Patch by Jessie Berlin <[email protected]> on 2012-09-02
Reviewed by Simon Fraser.

Disable the test because it is flakey on so many platforms. Remove it from the Skipped and
TestExpectations files so that run-webkit-tests doesn't go looking for it.

* fast/html/marquee-alternate.html-disabled: Renamed from LayoutTests/fast/html/marquee-alternate.html.
* platform/chromium/TestExpectations:
* platform/efl/Skipped:
* platform/qt-arm/Skipped:

Modified Paths

Added Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (127388 => 127389)


--- trunk/LayoutTests/ChangeLog	2012-09-02 10:34:26 UTC (rev 127388)
+++ trunk/LayoutTests/ChangeLog	2012-09-02 17:09:26 UTC (rev 127389)
@@ -1,3 +1,18 @@
+2012-09-02  Jessie Berlin  <[email protected]>
+
+        fast/html/marquee-alternate.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=94130
+
+        Reviewed by Simon Fraser.
+
+        Disable the test because it is flakey on so many platforms. Remove it from the Skipped and
+        TestExpectations files so that run-webkit-tests doesn't go looking for it.
+
+        * fast/html/marquee-alternate.html-disabled: Renamed from LayoutTests/fast/html/marquee-alternate.html.
+        * platform/chromium/TestExpectations:
+        * platform/efl/Skipped:
+        * platform/qt-arm/Skipped:
+
 2012-08-31  Dirk Schulze  <[email protected]>
 
         Use -webkit-clip-path shapes to clip SVG elements

Deleted: trunk/LayoutTests/fast/html/marquee-alternate.html (127388 => 127389)


--- trunk/LayoutTests/fast/html/marquee-alternate.html	2012-09-02 10:34:26 UTC (rev 127388)
+++ trunk/LayoutTests/fast/html/marquee-alternate.html	2012-09-02 17:09:26 UTC (rev 127389)
@@ -1,64 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<script src=""
-<script type="text/_javascript_">
-window.jsTestIsAsync = true;
-var initialPosition = 1;
-var halfAnimationPeriod = 63;
-var fullAnimationPeriod = 123;
-function scrollOffsetInitial()
-{
-  var section1 = document.getElementById('marquee');
-  if (section1.scrollLeft == -initialPosition) {
-      debug("PASS on initial position");
-  } else {
-      debug("FAIL");
-      debug("ScrollLeft = " + section1.scrollLeft);
-      debug("ScrollWidth = " + section1.scrollWidth);
-      finishJSTest();
-  }
-}
-
-function scrollOffsetCompleteCycle()
-{
-  var section1 = document.getElementById('marquee');
-  if (section1.scrollLeft == -initialPosition) {
-      debug("PASS on after full cycle completion");
-  } else {
-      debug("FAIL");
-      debug("ScrollLeft = " + section1.scrollLeft);
-      debug("ScrollWidth = " + section1.scrollWidth);
-  }
-  finishJSTest();
-}
-
-function scrollOffsetMidCycle()
-{
-  var section1 = document.getElementById('marquee');
-  if (section1.scrollLeft == 0 ) {
-      debug("PASS on after half cycle completion");
-  } else {
-      debug("FAIL");
-      debug("ScrollLeft = " + section1.scrollLeft);
-      debug("ScrollWidth = " + section1.scrollWidth);
-      finishJSTest();
-  }
-}
-
-function dump() {
-  var t=setTimeout("scrollOffsetInitial()",0);
-  var t=setTimeout("scrollOffsetMidCycle()",halfAnimationPeriod);
-  var t=setTimeout("scrollOffsetCompleteCycle()",fullAnimationPeriod);
-}
-successfullyParsed = true;
-</script>
-</head>
-<body _onload_ = dump() >
-<marquee id="marquee" width=30 behavior="alternate" scrollamount=1 scrolldelay=1><img src="" width="29" height="29" alt="lime"></marquee>
-<pre id="console"></pre>
-<script src=""
-</body>
-</body>
-</html>

Copied: trunk/LayoutTests/fast/html/marquee-alternate.html-disabled (from rev 127388, trunk/LayoutTests/fast/html/marquee-alternate.html) (0 => 127389)


--- trunk/LayoutTests/fast/html/marquee-alternate.html-disabled	                        (rev 0)
+++ trunk/LayoutTests/fast/html/marquee-alternate.html-disabled	2012-09-02 17:09:26 UTC (rev 127389)
@@ -0,0 +1,64 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<script src=""
+<script type="text/_javascript_">
+window.jsTestIsAsync = true;
+var initialPosition = 1;
+var halfAnimationPeriod = 63;
+var fullAnimationPeriod = 123;
+function scrollOffsetInitial()
+{
+  var section1 = document.getElementById('marquee');
+  if (section1.scrollLeft == -initialPosition) {
+      debug("PASS on initial position");
+  } else {
+      debug("FAIL");
+      debug("ScrollLeft = " + section1.scrollLeft);
+      debug("ScrollWidth = " + section1.scrollWidth);
+      finishJSTest();
+  }
+}
+
+function scrollOffsetCompleteCycle()
+{
+  var section1 = document.getElementById('marquee');
+  if (section1.scrollLeft == -initialPosition) {
+      debug("PASS on after full cycle completion");
+  } else {
+      debug("FAIL");
+      debug("ScrollLeft = " + section1.scrollLeft);
+      debug("ScrollWidth = " + section1.scrollWidth);
+  }
+  finishJSTest();
+}
+
+function scrollOffsetMidCycle()
+{
+  var section1 = document.getElementById('marquee');
+  if (section1.scrollLeft == 0 ) {
+      debug("PASS on after half cycle completion");
+  } else {
+      debug("FAIL");
+      debug("ScrollLeft = " + section1.scrollLeft);
+      debug("ScrollWidth = " + section1.scrollWidth);
+      finishJSTest();
+  }
+}
+
+function dump() {
+  var t=setTimeout("scrollOffsetInitial()",0);
+  var t=setTimeout("scrollOffsetMidCycle()",halfAnimationPeriod);
+  var t=setTimeout("scrollOffsetCompleteCycle()",fullAnimationPeriod);
+}
+successfullyParsed = true;
+</script>
+</head>
+<body _onload_ = dump() >
+<marquee id="marquee" width=30 behavior="alternate" scrollamount=1 scrolldelay=1><img src="" width="29" height="29" alt="lime"></marquee>
+<pre id="console"></pre>
+<script src=""
+</body>
+</body>
+</html>

Modified: trunk/LayoutTests/platform/chromium/TestExpectations (127388 => 127389)


--- trunk/LayoutTests/platform/chromium/TestExpectations	2012-09-02 10:34:26 UTC (rev 127388)
+++ trunk/LayoutTests/platform/chromium/TestExpectations	2012-09-02 17:09:26 UTC (rev 127389)
@@ -2797,8 +2797,6 @@
 // Need to implement file name logging.
 BUGWK76572 : http/tests/download = TEXT
 
-BUGWK94130 : fast/html/marquee-alternate.html = PASS TEXT
-
 BUGWK77314 WIN MAC : fast/events/touch/send-oncancel-event.html = PASS TEXT
 
 // Skipped until setTouchPointRadius get implemented

Modified: trunk/LayoutTests/platform/efl/Skipped (127388 => 127389)


--- trunk/LayoutTests/platform/efl/Skipped	2012-09-02 10:34:26 UTC (rev 127388)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-09-02 17:09:26 UTC (rev 127389)
@@ -547,7 +547,6 @@
 fast/gradients/generated-gradients.html
 fast/gradients/radial-centered.html
 fast/harness/user-preferred-language.html
-fast/html/marquee-alternate.html
 fast/inline-block/contenteditable-baseline.html
 fast/inline/continuation-outlines-with-layers-2.html
 fast/inline/continuation-outlines-with-layers.html

Modified: trunk/LayoutTests/platform/qt-arm/Skipped (127388 => 127389)


--- trunk/LayoutTests/platform/qt-arm/Skipped	2012-09-02 10:34:26 UTC (rev 127388)
+++ trunk/LayoutTests/platform/qt-arm/Skipped	2012-09-02 17:09:26 UTC (rev 127389)
@@ -118,7 +118,6 @@
 fast/events/click-count.html
 fast/events/dont-loose-last-event.html
 fast/forms/basic-selects.html
-fast/html/marquee-alternate.html
 http/tests/appcache/auth.html
 http/tests/inspector/extensions-ignore-cache.html
 http/tests/inspector/inspect-element.html
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to