Bug 1343884 - Add a tweak to cause a MozAfterPaint in 1239889-1.html. r=boris DONTBUILD

MozReview-Commit-ID: PiXLTTCXSi

--HG--
extra : rebase_source : 0a803674ece5a70b998dc4d8a5f77172962c7a21
This commit is contained in:
Hiroyuki Ikezoe 2017-04-28 13:17:34 +09:00
Родитель 3cebcd4d00
Коммит bf97b2a40a
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,5 @@
<!doctype html>
<html>
<html class="reftest-wait">
<head>
<title>Bug 1239889</title>
</head>
@ -8,5 +8,9 @@
<script>
var div = document.createElement('div');
var effect = new KeyframeEffectReadOnly(div, { opacity: [0, 1] });
requestAnimationFrame(() => {
document.body.appendChild(div);
document.documentElement.classList.remove("reftest-wait");
});
</script>
</html>