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>
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
<html>
|
||
<head>
|
||
<title>CSS Test: text-transform - lowercase - basic cases</title>
|
||
<link rel="author" title="Satoshi Umehara" href="mailto:umehara@est.co.jp" >
|
||
<link rel="help" title="CSS Text Level 3: 3.1. Transforming Text: the ‘text-transform’ property" href="http://www.w3.org/TR/css-text-3/#text-transform" >
|
||
<link rel="match" href="reference/text-transform-lowercase-101-ref.xht">
|
||
<meta name="assert" content="The UA should put all characters in lowercase when text-transform is set to lowercase." >
|
||
<style type="text/css">
|
||
<![CDATA[
|
||
.test span {
|
||
text-transform: lowercase;
|
||
}
|
||
/* the CSS below is not part of the test */
|
||
span {
|
||
color: Blue;
|
||
}
|
||
]]>
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<p>
|
||
Test passes if the first sentence matches the second one.
|
||
</p>
|
||
<div class="test">
|
||
<span>ALL CHARACTERS SHOULD BE PUT IN LOWERCASE.</span>
|
||
</div>
|
||
<div>
|
||
<span>all characters should be put in lowercase.</span>
|
||
</div>
|
||
</body>
|
||
</html>
|