| Index: LayoutTests/fast/dom/MicroData/propertynodelist-crash.html
|
| diff --git a/LayoutTests/fast/dom/MicroData/propertynodelist-crash.html b/LayoutTests/fast/dom/MicroData/propertynodelist-crash.html
|
| deleted file mode 100644
|
| index d0f88cfb1f5e5cc861d978692a84e80932d70937..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/MicroData/propertynodelist-crash.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -<p>This test is successful if it does not crash.</p>
|
| -<div id='elementWithItemProp' itemprop='foo'></div>
|
| -<div itemscope></div>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -function gc()
|
| -{
|
| - if (window.GCController)
|
| - return GCController.collect();
|
| -
|
| - for (var i = 0; i < 10000; i++) // force garbage collection
|
| - var s = new String("");
|
| -}
|
| -
|
| -var testElement = document.getItems()[0];
|
| -var propertyNodeList = testElement.properties.namedItem('foo');
|
| -testElement.setAttribute("itemref", "elementWithItemProp");
|
| -propertyNodeList = 0;
|
| -gc();
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|