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

Unified Diff: testing/resources/bug_551248.in

Issue 2211513002: Add test for bug 620428 (setinterval cancellation) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: EXPECT_TRUE is simpler Created 4 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
« no previous file with comments | « testing/embedder_test_timer_handling_delegate.h ('k') | testing/resources/bug_551248.pdf » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/resources/bug_551248.in
diff --git a/testing/resources/bug_551248.in b/testing/resources/bug_551248.in
index ad10e93912cb2323ded1665b4de5f8aafab5e0b5..c577824873777fffee9f6a42dda0d31b07b32ff1 100644
--- a/testing/resources/bug_551248.in
+++ b/testing/resources/bug_551248.in
@@ -65,11 +65,14 @@ endobj
{{object 50 0}} <<
>>
stream
-function startDelay()
-{
- app.alert("hello world");
+function fireTimeOut() {
+ app.alert("timer fired");
}
-app.setTimeOut("startDelay()", 3000);
+function fireInterval() {
+ app.alert("interval fired");
+}
+app.setTimeOut("fireTimeOut()", 3000);
+app.setInterval("fireInterval()", 2000);
endstream
endobj
{{xref}}
« no previous file with comments | « testing/embedder_test_timer_handling_delegate.h ('k') | testing/resources/bug_551248.pdf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698