Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: LayoutTests/fast/animation/request-animation-frame-during-modal.html

Issue 512533002: Remove showModalDialog layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 cc372d62dc33ab40e19d1d6a8036e2528f520db4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/animation/request-animation-frame-during-modal.html
+++ /dev/null
@@ -1,34 +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 = 'window.setTimeout(window.close, 100);';
- showModalDialog('data:text/html,<script>' + src + '</' + 'script>');
- debug('Returned from modal dialog');
-
- window.requestAnimationFrame(function() {
- isSuccessfullyParsed();
- if (window.testRunner)
- testRunner.notifyDone();
- });
-}
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-</script>
-</body>
-</html>
-
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/animation/request-animation-frame-during-modal-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698