Update web-platform-tests to revision add24188a1226f3598ad6b455e71641c9ac6a5fd

This commit is contained in:
WPT Sync Bot 2019-03-29 21:43:03 -04:00
parent 4cf39a696d
commit 6ed2abf735
80 changed files with 2127 additions and 133 deletions

View file

@ -56,6 +56,10 @@
{style:'', body:'<img id=test src="{png}" height=100% border=10>', q:184, s:1},
{style:'', body:'<table id=test height=100%><tr><td></table>', q:184, s:6},
{style:'#foo { height:100px } #test { height:100% }', body:'<div id=foo><div><div id=test></div></div></div>', q:100, s:0},
{style:'#foo { height:100px } #grid { display:grid } #test { height:100% }', body:'<div id=foo><div id=grid><div id=test></div></div></div>', q:0, s:0},
{style:'#foo { height:100px } #grid { display:inline-grid } #test { height:100% }', body:'<div id=foo><div id=grid><div id=test></div></div></div>', q:0, s:0},
{style:'#foo { height:100px } #flex { display:flex } #test { height:100% }', body:'<div id=foo><div id=flex><div id=test></div></div></div>', q:0, s:0},
{style:'#foo { height:100px } #flex { display:inline-flex } #test { height:100% }', body:'<div id=foo><div id=flex><div id=test></div></div></div>', q:0, s:0},
{style:'#foo { position:absolute } #test { height:100% }', body:'<div id=foo><div><div id=test></div></div></div>', q:0, s:0},
{style:'#foo { position:relative } #test { height:100% }', body:'<div id=foo><div><div id=test></div></div></div>', q:184, s:0},
{style:'#foo { height:100px } #test { height:100%; position:absolute }', body:'<div id=foo><div><div id=test></div></div></div>', q:200, s:200},