Add scripts/import_wpt_reftests.py to sparse-clone the upstream WPT repo and bulk-import qualifying CSS reftests (no JS, no external resources) as known_fail entries. 23 tests already pass and are promoted. The import script is idempotent and exposed via `just import-wpt`. CI now prints the WPT summary (pass=36 known_fail=2877 skip=1) on every run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
711 B
HTML
29 lines
711 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CSS Background-clip Test: the background is pruned to content box</title>
|
|
<link rel="author" title="Xie Bing" href="mailto:451887565@qq.com">
|
|
<link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-03 -->
|
|
<style type="text/css">
|
|
.box{
|
|
width:300px;
|
|
height:300px;
|
|
padding:50px;
|
|
border:10px dashed #000000;
|
|
}
|
|
.inner{
|
|
width:300px;
|
|
height:300px;
|
|
background-color:yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if the background is pruned to content box.</p>
|
|
<div class="box">
|
|
<div class="inner">Inner area!</div>
|
|
</div>
|
|
</body>
|
|
</html>
|