Changeset 175488 in webkit
- Timestamp:
- Nov 3, 2014, 1:19:15 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r175469 r175488 1 2014-11-03 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (Subpixel layout): Bubbles don't fit in Bugzilla review page 4 https://bugs.webkit.org/show_bug.cgi?id=138323 5 6 Reviewed by Zalan Bujtas. 7 8 * QueueStatusServer/templates/statusbubble.html: Round the sizes up, not down. 9 1 10 2014-11-03 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com> 2 11 -
trunk/Tools/QueueStatusServer/app.yaml
r174622 r175488 1 1 application: webkit-queues 2 version: 17 4622# SVN revision of last major change2 version: 175488 # SVN revision of last major change 3 3 runtime: python 4 4 api_version: 1 -
trunk/Tools/QueueStatusServer/templates/statusbubble.html
r174115 r175488 54 54 <script> 55 55 window.addEventListener("message", function(e) { 56 if (e.data == 'containerMetrics') {57 e.source.postMessage({'width': bubbleContainer.offsetWidth, 'height': bubbleContainer.offsetHeight},58 56 if (e.data === 'containerMetrics') { 57 var clientRect = bubbleContainer.getBoundingClientRect(); 58 e.source.postMessage({'width': Math.ceil(clientRect.width), 'height': Math.ceil(clientRect.height)}, e.origin); 59 59 } else 60 60 console.log("Unknown postMessage: " + e.data);
Note:
See TracChangeset
for help on using the changeset viewer.