summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorvictorw@chromium.org <victorw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-01 23:20:16 +0000
committervictorw@chromium.org <victorw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-01 23:20:16 +0000
commitb81bf79682de74928c3a5be68ed9802f9717c5a9 (patch)
tree26cb010b28266ab0811dfaf3ad15dd398c4753d7 /webkit
parente3dfa2a3ce1f897eff53d69f8b6a0bc247069e6c (diff)
downloadchromium_src-b81bf79682de74928c3a5be68ed9802f9717c5a9.zip
chromium_src-b81bf79682de74928c3a5be68ed9802f9717c5a9.tar.gz
chromium_src-b81bf79682de74928c3a5be68ed9802f9717c5a9.tar.bz2
Delete the chrome style sheet test that is no longer needed.
The same test upstream has been fixed and this one is no longer needed. TBR=pam TEST=none BUG=none Review URL: http://codereview.chromium.org/183042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2-expected.txt3
-rw-r--r--webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2.html35
2 files changed, 0 insertions, 38 deletions
diff --git a/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2-expected.txt b/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2-expected.txt
deleted file mode 100644
index 5e51726..0000000
--- a/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2-expected.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-This test verifies that style sheet do not outlive their elements. Since you can get back to the element with the ownerNode attribute, it's important to keep the element alive.
-
-Test passed.
diff --git a/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2.html b/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2.html
deleted file mode 100644
index 1629a2e..0000000
--- a/webkit/data/layout_tests/pending/fast/dom/StyleSheet/ownerNode-lifetime-expected-2.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<link rel="stylesheet" type="text/css" href="theme.css"/>
-
-<script>
-function runTest() {
- if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
- var linkElement = document.getElementsByTagName('link')[0];
- var styleSheet = linkElement.sheet;
-
- // delete link element
- linkElement.parentNode.removeChild(linkElement);
- linkElement = null;
-
- if (window.gc) {
- window.gc();
- } else {
- for (var i = 0; i < 5000; i++)
- new Object();
- }
- styleSheet.ownerNode.cloneNode();
-
- document.getElementById("result").innerHTML = "Test passed.";
-}
-</script>
-<body onload="runTest()">
-<p>
-This test verifies that style sheet do not outlive their elements.
-Since you can get back to the element with the ownerNode attribute,
-it's important to keep the element alive.
-</p>
-<p id="result">TEST HAS NOT RUN YET.</p>
-</body>
-</html>