Update web-platform-tests to revision 786fc058fd83cbf002be3a35100ab2a3b1f98d58

This commit is contained in:
WPT Sync Bot 2019-09-20 10:34:03 +00:00
parent 748fa72320
commit d38b1c8241
76 changed files with 1323 additions and 174 deletions

View file

@ -22,9 +22,9 @@
var displayMe = document.getElementById("displayMe");
var displayMeToo = document.getElementById("displayMeToo");
// Scroll the text container into view.
container.scrollLeft = 100;
container.scrollLeft = -300;
displayMe.style.display = "inline";
displayMeToo.style.display = "block";
assert_equals(container.scrollLeft, 300);
assert_equals(container.scrollLeft, -400);
}, "Line at edge of scrollport shouldn't jump visually when content is inserted before");
</script>