Index: LayoutTests/fast/animation/request-animation-frame-during-modal.html |
diff --git a/LayoutTests/fast/animation/request-animation-frame-during-modal.html b/LayoutTests/fast/animation/request-animation-frame-during-modal.html |
deleted file mode 100644 |
index 2181bb94d528b47612c73c0844ab98a7bd0bc0e5..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/animation/request-animation-frame-during-modal.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<script src="../../resources/js-test.js"></script> |
-<body> |
- |
-<script type="text/javascript"> |
-if (window.testRunner) |
- testRunner.setCanOpenWindows(); |
- |
-description('Tests that requestAnimationFrame callbacks are not invoked while modal dialogs are displayed.'); |
- |
-onload = function() |
-{ |
- debug('Setting callback'); |
- window.requestAnimationFrame(function() { debug('Callback fired'); }, document.body); |
- debug('Showing modal dialog'); |
- var src = 'if (window.testRunner) {' + |
- ' testRunner.display();' + |
- ' window.close();' + |
- '} else {'+ |
- ' window.setTimeout(window.close, 10);'+ |
- '}'; |
- showModalDialog('data:text/html,<script>' + src + '</' + 'script>'); |
- debug('Returned from modal dialog'); |
- if (window.testRunner) {; |
- testRunner.display(); |
- } |
- |
- window.requestAnimationFrame(function() { |
- isSuccessfullyParsed(); |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- }); |
-} |
- |
-if (window.testRunner) |
- testRunner.waitUntilDone(); |
- |
-</script> |
-</body> |
-</html> |
- |