tenfourfox/layout/reftests/bugs/1121748-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

35 lines
555 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
border: 1px solid gray;
}
.statusbar {
height: 26px;
background: #eef;
display: flex;
justify-content: flex-end;
}
#test1 {
border: 1px solid red;
}
#test2 {
border: 1px solid green;
}
</style>
<script>
function test1() {
document.querySelector('#test1').hidden = false;
document.querySelector('#test2').hidden = false;
}
</script>
</head>
<body onload="test1()">
<div dir="rtl">
<div class="statusbar">
<img src="foo" id="test1" hidden>
<img src="bar" id="test2" hidden>
</div>
</div>