forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-tables] Subpixel tests that Chrome fails but Safari, FF, Edge pass This CL contains tests only, no behavior change. Bug: 377847 Change-Id: I5782e3195094700a9cb992ef2ab9e353ddf048db Reviewed-on: https://chromium-review.googlesource.com/c/1444391 Commit-Queue: David Grogan <dgrogan@chromium.org> Reviewed-by: Emil A Eklund <eae@chromium.org> Reviewed-by: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#627533} -- wpt-commits: 18a1fc0a5f95e08dae436d652c9953f2277dfd8e wpt-pr: 15142
28 lines
460 B
HTML
28 lines
460 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
font-size: 0; /* so I can leave spaces between the child divs */
|
|
height: 20px;
|
|
}
|
|
div > div {
|
|
display: inline-block;
|
|
}
|
|
div > div:first-child {
|
|
background: blue;
|
|
}
|
|
div > div:nth-child(2) {
|
|
background: lime;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<div style="width:3.6px;"></div>
|
|
<div style="width:3.6px;"></div>
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<div>
|
|
<div style="width:3.3px;"></div>
|
|
<div style="width:3.3px;"></div>
|
|
</div>
|