author | Kartikaya Gupta <kgupta@mozilla.com> |
Fri, 05 Feb 2016 17:09:37 -0500 | |
changeset 283349 | a556e78d4a629850583e767d14ae99dcc782172f |
parent 283348 | 17a54cf0454b133a062b5ac94795a07f5d5d9676 |
child 283350 | 7498837e2150d99dea60542a8ee0c750a2faa42b |
push id | 29979 |
push user | philringnalda@gmail.com |
push date | Sun, 07 Feb 2016 03:08:56 +0000 |
treeherder | mozilla-central@76733110704b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | kip |
bugs | 1104356 |
milestone | 47.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
layout/reftests/scrolling/reftest.list | file | annotate | diff | comparison | revisions | |
layout/reftests/scrolling/scroll-behavior-10.html | file | annotate | diff | comparison | revisions |
--- a/layout/reftests/scrolling/reftest.list +++ b/layout/reftests/scrolling/reftest.list @@ -14,16 +14,17 @@ skip-if(Android) pref(layout.css.scroll- skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-2.html scroll-behavior-2.html?ref # see bug 1041833 skip-if(Mulet) skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-3.html scroll-behavior-3.html?ref # see bug 1041833 # MULET: Bug 1144079: Re-enable Mulet mochitests and reftests taskcluster-specific disables skip-if(Mulet) skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-4.html scroll-behavior-4.html?ref # see bug 1041833 # MULET: Bug 1144079: Re-enable Mulet mochitests and reftests taskcluster-specific disables skip-if(Mulet) skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-5.html scroll-behavior-5.html?ref # see bug 1041833 # MULET: Bug 1144079: Re-enable Mulet mochitests and reftests taskcluster-specific disables skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-6.html scroll-behavior-6.html?ref # see bug 1041833 skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-7.html scroll-behavior-7.html?ref # see bug 1041833 skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-8.html scroll-behavior-8.html?ref # see bug 1041833 skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-9.html scroll-behavior-9.html?ref # see bug 1041833 +skip-if(Android) pref(layout.css.scroll-behavior.enabled,true) pref(layout.css.scroll-behavior.property-enabled,true) == scroll-behavior-10.html scroll-behavior-10.html?ref # see bug 1041833 skip-if((B2G&&browserIsRemote)||Mulet) HTTP == simple-1.html simple-1.html?ref # Initial mulet triage: parity with B2G/B2G Desktop skip-if(B2G||Mulet) HTTP == subpixel-1.html#d subpixel-1-ref.html#d # Initial mulet triage: parity with B2G/B2G Desktop fuzzy-if(Android,4,120) HTTP == text-1.html text-1.html?ref fuzzy-if(Android,4,120) HTTP == text-2.html?up text-2.html?ref skip-if(B2G||Mulet) fuzzy-if(Android&&AndroidVersion<15,251,722) fuzzy-if(d2d,1,4) HTTP == transformed-1.html transformed-1.html?ref # Initial mulet triage: parity with B2G/B2G Desktop HTTP == transformed-1.html?up transformed-1.html?ref fuzzy-if(Android,5,20000) == uncovering-1.html uncovering-1-ref.html fuzzy-if(Android,5,20000) == uncovering-2.html uncovering-2-ref.html
new file mode 100644 --- /dev/null +++ b/layout/reftests/scrolling/scroll-behavior-10.html @@ -0,0 +1,64 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<head> + <meta charset="utf-8"> + <title>Testcase for bug 1104356 smooth scrolling expected</title> + <style type="text/css"> + + html,body { + color: black; + background-color: white; + font-size: 16px; + padding: 0; + margin: 0; + } + + #parent { + overflow: hidden; + width: 100px; + height: 100px; + } + + #a_box { + position: relative; + left: 10px; + top: 10px; + width: 20px; + height: 20px; + background: blue; + } + + #another_box { + position: relative; + left: 2000px; + top: 2000px; + width: 20px; + height: 20px; + background: green; + } + + </style> +</head> +<body> + <div id="parent"> + <div id="a_box"></div> + <div id="another_box"></div> + </div> +<script> + function doTest() { + if (document.location.search != '?ref') { + document.getElementById('parent').scrollTo({left: 10, top: 10, behavior: 'smooth'}); + } else { + document.getElementById('parent').scrollLeft = 10; + document.getElementById('parent').scrollTop = 10; + } + + // Allow smooth scrolling to complete before testing result + setTimeout(function() { + document.documentElement.removeAttribute("class"); + }, 500); + } + window.addEventListener("MozReftestInvalidate", doTest, false); +</script> +</body> +</html>