mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
MozReview-Commit-ID: CSM0hnryiTp --HG-- rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-doesnt-send-reports-without-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-doesnt-send-reports-without-violation.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-only-sends-reports-on-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-only-sends-reports-on-violation.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-to-overrides-report-uri-1.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-to-overrides-report-uri-1.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-report-to-overrides-report-uri-2.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-report-to-overrides-report-uri-2.https.sub.html rename : testing/web-platform/tests/content-security-policy/reporting/reporting-api-sends-reports-on-violation.https.sub.html => testing/web-platform/tests/content-security-policy/reporting-api/reporting-api-sends-reports-on-violation.https.sub.html
23 lines
790 B
HTML
23 lines
790 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Writing modes test reference</title>
|
|
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
|
<p>The test passes if you can see “1 2 3” 6 times below (without the quotation marks). If any of them is reversed (“3 2 1”) the test fails.</p>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="300"
|
|
height="600">
|
|
<g>
|
|
<text x="0" y="50" style="fill: blue;">1 2 3</text>
|
|
<text x="0" y="150" style="fill: blue;">1 2 3</text>
|
|
</g>
|
|
<g>
|
|
<text x="150" y="50" style="fill: blue;">1 2 3</text>
|
|
<text x="150" y="150" style="fill: blue;">1 2 3</text>
|
|
</g>
|
|
<g>
|
|
<text x="300" y="50" style="direction: rtl; fill: blue;">3 2 1</text>
|
|
<text x="300" y="150" style="direction: rtl; fill: blue;">3 2 1</text>
|
|
</g>
|
|
</svg>
|
|
|