Update web-platform-tests to revision ab64b78a8f6777a1d95d8d1d4bba9ccdbecf94ea

This commit is contained in:
WPT Sync Bot 2018-08-26 21:31:58 -04:00
parent da36740f0b
commit 394aced19f
713 changed files with 12430 additions and 12632 deletions

View file

@ -36,10 +36,10 @@
var frameTest = document.getElementById('frameTest');
// let's resize the iframe vertically only, showing that the vh sizes is not updated.
if (height <= 300) {
if (height < 300) {
//frameTest.style.width = height++ + "px";
frameTest.style.height = height++ + "px";
frameTest.style.height = ++height + "px";
setTimeout(resizeReference, 10);

View file

@ -78,8 +78,12 @@
setTimeout(animate, 20);
addEventListener('transitionend', function() {
parent.postMessage('testBoxWithTransition', '*');
addEventListener('transitionend', event => {
if (event.propertyName == 'width') {
// Stop any further transitons.
testBoxWithTransition.style.transitionProperty = 'none';
parent.postMessage('testBoxWithTransition', '*');
}
}, false);
var transitionedTestBoxStyle = document.getElementById('testBoxWithTransition').style;
transitionedTestBoxStyle.height = "60px";

View file

@ -39,10 +39,10 @@
var frameTest = document.getElementById('frameTest');
// let's resize the iframe vertically only, showing that the vh sizes is not updated.
if (height <= 300) {
if (height < 300) {
//frameTest.style.width = height++ + "px";
frameTest.style.height = height++ + "px";
frameTest.style.height = ++height + "px";
setTimeout(resizeReference, 10);