Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Use reftest-wait to ensure background-root-102.xht and background-root-103.xht do not finish early. #951

Merged
merged 1 commit into from Nov 22, 2015
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion css21/backgrounds/background-root-102.xht
@@ -1,5 +1,5 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" class="reftest-wait">
<head>
<title>CSS Test: CSS: Changing the background of the BODY element by changing its class</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
Expand All @@ -17,6 +17,7 @@
function test() {
document.getElementsByTagName('body')[0].className = 'after';
document.getElementsByTagName('p')[0].className = 'after';
document.documentElement.className = "";
}
</script>
</head>
Expand Down
3 changes: 2 additions & 1 deletion css21/backgrounds/background-root-103.xht
@@ -1,5 +1,5 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-before">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-before" class="reftest-wait">
<head>
<title>CSS Test: CSS: Changing the background of the BODY element by changing a parent's attribute</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
Expand All @@ -17,6 +17,7 @@
function test() {
document.getElementsByTagName('html')[0].lang = 'en-after';
document.getElementsByTagName('p')[0].lang = 'en-after';
document.documentElement.className = "";
}
</script>
</head>
Expand Down