Add explicit |forceOnlineSignin| to user pod status
[chromium-blink-merge.git] / android_webview / test / data / device_files / image_access.html
blob0b4cd49055e5acdbed7029e3a40116887d742435
1 <html>
2 <head>
3 <script>
4 function updateTitle() {
5 document.title = document.getElementById('img').naturalHeight;
7 </script>
8 </head>
9 <!-- TODO(mnaganov): Remove setInterval once img.onload fix is landed in WebKit (crbug.com/146554). -->
10 <body onload="updateTitle(); setInterval('updateTitle()', 500)">
11 <img id="img" onload="updateTitle()" src="chrome.png" />
12 </body>
13 </html>