Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid visual comparisons with lang="ja-jp" #6926

Merged
merged 1 commit into from
Sep 1, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions css/CSS2/selectors/attribute-value-selector-001-ref.xht
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
}
</style>
</head>
<body>
<body lang="en-us">
<p>Test passes if the first line of "Filler Text" below is black and the second one is green.</p>
<div>Filler Text</div>
<div class="green">Filler Text</div>
<div class="green" lang="fr-fr">Filler Text</div>
</body>
</html>
4 changes: 2 additions & 2 deletions css/CSS2/selectors/attribute-value-selector-001.xht
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
}
</style>
</head>
<body>
<body lang="en-us">
<p>Test passes if the first line of "Filler Text" below is black and the second one is green.</p>
<div id="div1">Filler Text</div>
<div id="div2">Filler Text</div>
<div id="div2" lang="fr-fr">Filler Text</div>
</body>
</html>
8 changes: 4 additions & 4 deletions css/CSS2/selectors/attribute-value-selector-002.xht
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<meta name="flags" content="" />
<meta name="assert" content="Selector matches attributes with specific value in a hyphen-separated list." />
<style type="text/css">
[lang|=en]
[lang|=fr]
{
color: green;
}
</style>
</head>
<body>
<body lang="en-us">
<p>Test passes if the first line of "Filler Text" below is black and the second one is green.</p>
<div lang="ja-jp">Filler Text</div>
<div lang="en-us">Filler Text</div>
<div>Filler Text</div>
<div lang="fr-fr">Filler Text</div>
</body>
</html>
4 changes: 2 additions & 2 deletions css/CSS2/selectors/attribute-value-selector-003.xht
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
}
</style>
</head>
<body>
<body lang="en-us">
<p>Test passes if the first line of "Filler Text" below is black and the second one is green.</p>
<div class="t estDiv">Filler Text</div>
<div class="t est">Filler Text</div>
<div class="t est" lang="fr-fr">Filler Text</div>
</body>
</html>