Skip to content

Commit 51799ec

Browse files
committed
JS Test Harness: Remove successfullyParsed from more tests
https://bugs.webkit.org/show_bug.cgi?id=71533 Reviewed by Ojan Vafai. * LayoutTests/*: Remove successfullyParsed Canonical link: https://commits.webkit.org/87846@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@99258 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 4d35808 commit 51799ec

786 files changed

Lines changed: 414 additions & 1682 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LayoutTests/ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2011-11-03 Erik Arvidsson <arv@chromium.org>
2+
3+
JS Test Harness: Remove successfullyParsed from more tests
4+
https://bugs.webkit.org/show_bug.cgi?id=71533
5+
6+
Reviewed by Ojan Vafai.
7+
8+
* LayoutTests/*: Remove successfullyParsed
9+
110
2011-11-03 Tony Chang <tony@chromium.org>
211

312
Remove an obsolete comment.

LayoutTests/accessibility/adjacent-continuations-cause-assertion-failure.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html>
33
<head>
44
<script>
5-
var successfullyParsed = false;
65

76
function buildAccessibilityTree(accessibilityObject, indent) {
87
var str = "";
@@ -46,7 +45,6 @@
4645
buildAccessibilityTree(accessibilityController.focusedElement, 0);
4746
}
4847

49-
successfullyParsed = true;
5048
</script>
5149

5250
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-checkbox-checked.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -45,7 +42,6 @@
4542
}
4643
}
4744

48-
successfullyParsed = true;
4945
</script>
5046

5147
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-checkbox-text.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -39,7 +36,6 @@
3936
shouldBe("checkbox.title", "'AXTitle: Three'");
4037
}
4138

42-
successfullyParsed = true;
4339
</script>
4440

4541
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-combobox.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -42,7 +39,6 @@
4239
debug("Role: " + firstChild.role);
4340
}
4441

45-
successfullyParsed = true;
4642
</script>
4743

4844
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-controls-with-tabs.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -56,7 +53,6 @@ <h2 id="itemInPanel2" tabindex=0>Select Crust</h2>
5653
shouldBe("tab1.isSelected", "true");
5754
}
5855

59-
successfullyParsed = true;
6056
</script>
6157

6258
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-disabled.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -29,7 +26,6 @@
2926
shouldBe("succeeded", "true");
3027
}
3128

32-
successfullyParsed = true;
3329
</script>
3430

3531
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-fallback-roles.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -27,7 +24,6 @@
2724
debug("Role should be: " + test.role);
2825
}
2926
}
30-
successfullyParsed = true;
3127
</script>
3228

3329
<script src="../../../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-help.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -26,7 +23,6 @@
2623
shouldBe("button.helpText", "'AXHelp: click here'");
2724
}
2825

29-
successfullyParsed = true;
3026
</script>
3127

3228
<script src="../fast/js/resources/js-test-post.js"></script>

LayoutTests/accessibility/aria-hidden-update.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<html>
22
<html>
33
<head>
4-
<script>
5-
var successfullyParsed = false;
6-
</script>
74
<script src="../fast/js/resources/js-test-pre.js"></script>
85
</head>
96
<body id="body">
@@ -55,7 +52,6 @@
5552
shouldBeTrue("parent.childAtIndex(1).isEqual(button3)");
5653

5754
}
58-
successfullyParsed = true;
5955
</script>
6056

6157
<script src="../fast/js/resources/js-test-post.js"></script>

0 commit comments

Comments
 (0)