Update web-platform-tests to revision 7cb66930f16381536cec572cd3f4f86c7bbb6787

This commit is contained in:
WPT Sync Bot 2020-05-19 08:19:06 +00:00
parent c183f95297
commit 9cff065d01
80 changed files with 1357 additions and 359 deletions

View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<title>CSS Borders: Borders appear when the element is smaller than 1/2 a pixel, reference</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#border-width">
<head>
<style>
#right {
position: absolute;
top: 10px;
left: 65px;
width: 0px;
height: 50px;
border-right: 1px dashed black;
}
#left {
position: absolute;
top: 10px;
left: 5px;
width: 0px;
height: 50px;
border-left: 1px dashed black;
}
#top {
position: absolute;
top: 5px;
left: 10px;
width: 50px;
height: 0px;
border-top: 1px dashed black;
}
#bottom {
position: absolute;
top: 65px;
left: 10px;
width: 50px;
height: 0px;
border-bottom: 1px dashed black;
}
</style>
</head>
<body>
<div id="top"></div>
<div id="right"></div>
<div id="bottom"></div>
<div id="left"></div>
</body>
</html>