blob: a7c2b124bf2c09df186d47305fe46f138f7c3fc8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that we relayout neighboring cells when collapsed border changes.</title>
<style>
#topCell {
border-left-width: 100px;
border-left-style: solid;
border-left-color: blue;
}
</style>
</head>
<body>
PASS if the blue border does not cover the padding/content box of 'foo'.
<table style="border-collapse: collapse;">
<tr><td>foo</td><td id="topCell">bar</td></tr></table>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
setTimeout(function() {
document.getElementById('topCell').style.borderLeftWidth = "150px";
document.body.offsetWidth;
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>
</body>
</html>