Move text_justify_none_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 22:03:19 -04:00
parent 731c1a491c
commit fa8971588a
4 changed files with 25 additions and 1 deletions

View file

@ -723,6 +723,18 @@
"url": "/_mozilla/css/text_indent_a.html"
}
],
"css/text_justify_none_a.html": [
{
"path": "css/text_justify_none_a.html",
"references": [
[
"/_mozilla/css/text_justify_none_ref.html",
"=="
]
],
"url": "/_mozilla/css/text_justify_none_a.html"
}
],
"css/text_overflow_basic_a.html": [
{
"path": "css/text_overflow_basic_a.html",
@ -2492,6 +2504,18 @@
"url": "/_mozilla/css/text_indent_a.html"
}
],
"css/text_justify_none_a.html": [
{
"path": "css/text_justify_none_a.html",
"references": [
[
"/_mozilla/css/text_justify_none_ref.html",
"=="
]
],
"url": "/_mozilla/css/text_justify_none_a.html"
}
],
"css/text_overflow_basic_a.html": [
{
"path": "css/text_overflow_basic_a.html",

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='text_justify_none_ref.html'>
<!-- Tests that `text-justify: none` disables justification. -->
<style>
p {
text-align: justify;
text-justify: none;
}
</style>
</head>
<body>
<p>MANY YEARS AGO PRINCE DARKNESS "GANNON" STOLE ONE OF THE TRIFORCE WITH POWER. PRINCESS ZELDA HAD ONE OF THE TRIFORCE WITH WISDOM. SHE DIVIDED IT INTO 8 UNITS TO HIDE IT FROM "GANNON" BEFORE SHE WAS CAPTURED. GO FIND THE "8" UNITS "LINK" TO SAVE HER.</p>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that `text-justify: none` disables justification. -->
<style>
p {
text-align: left;
}
</style>
</head>
<body>
<p>MANY YEARS AGO PRINCE DARKNESS "GANNON" STOLE ONE OF THE TRIFORCE WITH POWER. PRINCESS ZELDA HAD ONE OF THE TRIFORCE WITH WISDOM. SHE DIVIDED IT INTO 8 UNITS TO HIDE IT FROM "GANNON" BEFORE SHE WAS CAPTURED. GO FIND THE "8" UNITS "LINK" TO SAVE HER.</p>
</body>
</html>