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

Side by Side Diff: headless/test/data/page_one.html

Issue 2049363003: Adds support for headless chrome embedder mojo services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 4 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <head>
3 <script>
4
5 mojo.services.embedder_test.TestEmbedderService.then(function(service) {
6 service.returnTestResult("page one");
7 window.location.pathname = "/page_two.html";
Charlie Reis 2016/06/21 23:08:32 This probably won't exercise the bug, since it's n
alex clarke (OOO till 29th) 2016/06/22 10:04:00 No it didn't :) I've copied a trick used in one o
Charlie Reis 2016/06/22 19:30:59 Great-- that looks better.
8 });
9
10 </script>
11 </head>
12 <body><h1>Page one</h1></body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698