Bug 1311588 - Use longer duration to avoid failure on Android. r?boris draft
authorHiroyuki Ikezoe <hiikezoe@mozilla-japan.org>
Thu, 20 Oct 2016 12:43:21 +0900
changeset 427320 9d95d71a0fc1337bc5680979a62266dd16a30739
parent 427069 f40960c63bfac865d510ec9da42eeed74c384082
child 534431 ca050f430831708dacedff838e2c3294efd42eb2
push id32979
push userbmo:hiikezoe@mozilla-japan.org
push dateThu, 20 Oct 2016 05:31:53 +0000
reviewersboris
bugs1311588
milestone52.0a1
Bug 1311588 - Use longer duration to avoid failure on Android. r?boris MozReview-Commit-ID: L3fgbQIg4ca
layout/reftests/web-animations/1267937-1.html
--- a/layout/reftests/web-animations/1267937-1.html
+++ b/layout/reftests/web-animations/1267937-1.html
@@ -12,17 +12,17 @@
 </style>
 </head>
 <body>
 <div id="target"></div>
 <script>
   var target = document.getElementById("target");
   var anim = target.animate(
     { marginLeft: [ "0px", "10px" ] },
-    { duration: 100000 /* 100s */, easing: "steps(2, start)" });
+    { duration: 500000 /* 500s */, easing: "steps(2, start)" });
 
   anim.ready.then(function() {
     // Set currentTime in before phase, i.e., GetComputedTimingAt() returns
     // null progress in the phase so that we can skip ComposeStyle().
     // This currentTime value should be far from zero in order to skip
     // restyles requested by setting currentTime or frames in a next tick.
     // If this value is near by zero, say -1, the restyles will be processed in
     // the next tick and current time in the next tick must be greater than