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

Side by Side Diff: Source/web/tests/data/frame_timing_inner.html

Issue 908453003: Blink changes to record interest rects for http://w3c.github.io/frame-timing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update LayoutTests for new properties Created 5 years, 7 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
« no previous file with comments | « Source/web/tests/data/frame_timing_b.html ('k') | public/platform/WebFrameTimingEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <body style='margin:0px; display: flex;'>
4 <img id='sizer'/>
5 <script>
6 // The desired size should be specified in the url in the search portion
7 // like this ?widthDimension:heightDimension.
8 var parsedParameters = window.location.search.substring(1).split(':');
9
10 // Set the sizes.
11 var elementToSize = document.getElementById('sizer');
12 elementToSize.style.width = parsedParameters[0];
13 elementToSize.style.height = parsedParameters[1];
14 </script>
15 </body>
16 </html>
OLDNEW
« no previous file with comments | « Source/web/tests/data/frame_timing_b.html ('k') | public/platform/WebFrameTimingEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698