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

Side by Side Diff: Source/devtools/front_end/ui/ViewportControl.js

Issue 396853005: DevTools: [Console] fix certain case that forces console to shake (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 else if (this._headSelection.item > this._lastVisibleIndex) 343 else if (this._headSelection.item > this._lastVisibleIndex)
344 headElement = this._bottomGapElement; 344 headElement = this._bottomGapElement;
345 headOffset = this._selectionIsBackward ? 0 : 1; 345 headOffset = this._selectionIsBackward ? 0 : 1;
346 } 346 }
347 347
348 selection.setBaseAndExtent(anchorElement, anchorOffset, headElement, hea dOffset); 348 selection.setBaseAndExtent(anchorElement, anchorOffset, headElement, hea dOffset);
349 }, 349 },
350 350
351 refresh: function() 351 refresh: function()
352 { 352 {
353 if (!this.element.clientHeight) 353 if (!this._visibleHeight())
354 return; // Do nothing for invisible controls. 354 return; // Do nothing for invisible controls.
355 355
356 var itemCount = this._provider.itemCount(); 356 var itemCount = this._provider.itemCount();
357 if (!itemCount) { 357 if (!itemCount) {
358 for (var i = 0; i < this._renderedItems.length; ++i) 358 for (var i = 0; i < this._renderedItems.length; ++i)
359 this._renderedItems[i].cacheFastHeight(); 359 this._renderedItems[i].cacheFastHeight();
360 for (var i = 0; i < this._renderedItems.length; ++i) 360 for (var i = 0; i < this._renderedItems.length; ++i)
361 this._renderedItems[i].willHide(); 361 this._renderedItems[i].willHide();
362 this._renderedItems = []; 362 this._renderedItems = [];
363 this._contentElement.removeChildren(); 363 this._contentElement.removeChildren();
364 this._topGapElement.style.height = "0px"; 364 this._topGapElement.style.height = "0px";
365 this._bottomGapElement.style.height = "0px"; 365 this._bottomGapElement.style.height = "0px";
366 this._firstVisibleIndex = -1; 366 this._firstVisibleIndex = -1;
367 this._lastVisibleIndex = -1; 367 this._lastVisibleIndex = -1;
368 return; 368 return;
369 } 369 }
370 370
371 var selection = window.getSelection(); 371 var selection = window.getSelection();
372 var shouldRestoreSelection = this._updateSelectionModel(selection); 372 var shouldRestoreSelection = this._updateSelectionModel(selection);
373 373
374 var visibleFrom = this.element.scrollTop; 374 var visibleFrom = this.element.scrollTop;
375 var clientHeight = this.element.clientHeight; 375 var visibleHeight = this._visibleHeight();
376 var shouldStickToBottom = this._stickToBottom && this.element.isScrolled ToBottom(); 376 var shouldStickToBottom = this._stickToBottom && this.element.isScrolled ToBottom();
377 var isInvalidating = !this._cumulativeHeights; 377 var isInvalidating = !this._cumulativeHeights;
378 378
379 if (this._cumulativeHeights && itemCount !== this._cumulativeHeights.len gth) 379 if (this._cumulativeHeights && itemCount !== this._cumulativeHeights.len gth)
380 delete this._cumulativeHeights; 380 delete this._cumulativeHeights;
381 for (var i = 0; i < this._renderedItems.length; ++i) { 381 for (var i = 0; i < this._renderedItems.length; ++i) {
382 this._renderedItems[i].cacheFastHeight(); 382 this._renderedItems[i].cacheFastHeight();
383 // Tolerate 1-pixel error due to double-to-integer rounding errors. 383 // Tolerate 1-pixel error due to double-to-integer rounding errors.
384 if (this._cumulativeHeights && Math.abs(this._cachedItemHeight(this. _firstVisibleIndex + i) - this._provider.fastHeight(i + this._firstVisibleIndex) ) > 1) 384 if (this._cumulativeHeights && Math.abs(this._cachedItemHeight(this. _firstVisibleIndex + i) - this._provider.fastHeight(i + this._firstVisibleIndex) ) > 1)
385 delete this._cumulativeHeights; 385 delete this._cumulativeHeights;
386 } 386 }
387 this._rebuildCumulativeHeightsIfNeeded(); 387 this._rebuildCumulativeHeightsIfNeeded();
388 var oldFirstVisibleIndex = this._firstVisibleIndex; 388 var oldFirstVisibleIndex = this._firstVisibleIndex;
389 var oldLastVisibleIndex = this._lastVisibleIndex; 389 var oldLastVisibleIndex = this._lastVisibleIndex;
390 if (shouldStickToBottom) { 390 if (shouldStickToBottom) {
391 this._lastVisibleIndex = itemCount - 1; 391 this._lastVisibleIndex = itemCount - 1;
392 this._firstVisibleIndex = Math.max(itemCount - Math.ceil(clientHeigh t / this._provider.minimumRowHeight()), 0); 392 this._firstVisibleIndex = Math.max(itemCount - Math.ceil(visibleHeig ht / this._provider.minimumRowHeight()), 0);
393 } else { 393 } else {
394 this._firstVisibleIndex = Math.max(Array.prototype.lowerBound.call(t his._cumulativeHeights, visibleFrom + 1), 0); 394 this._firstVisibleIndex = Math.max(Array.prototype.lowerBound.call(t his._cumulativeHeights, visibleFrom + 1), 0);
395 // Proactively render more rows in case some of them will be collaps ed without triggering refresh. @see crbug.com/390169 395 // Proactively render more rows in case some of them will be collaps ed without triggering refresh. @see crbug.com/390169
396 this._lastVisibleIndex = this._firstVisibleIndex + Math.ceil(clientH eight / this._provider.minimumRowHeight()) - 1; 396 this._lastVisibleIndex = this._firstVisibleIndex + Math.ceil(visible Height / this._provider.minimumRowHeight()) - 1;
397 this._lastVisibleIndex = Math.min(this._lastVisibleIndex, itemCount - 1); 397 this._lastVisibleIndex = Math.min(this._lastVisibleIndex, itemCount - 1);
398 } 398 }
399 var topGapHeight = this._cumulativeHeights[this._firstVisibleIndex - 1] || 0; 399 var topGapHeight = this._cumulativeHeights[this._firstVisibleIndex - 1] || 0;
400 var bottomGapHeight = this._cumulativeHeights[this._cumulativeHeights.le ngth - 1] - this._cumulativeHeights[this._lastVisibleIndex]; 400 var bottomGapHeight = this._cumulativeHeights[this._cumulativeHeights.le ngth - 1] - this._cumulativeHeights[this._lastVisibleIndex];
401 401
402 this._topGapElement.style.height = topGapHeight + "px"; 402 this._topGapElement.style.height = topGapHeight + "px";
403 this._bottomGapElement.style.height = bottomGapHeight + "px"; 403 this._bottomGapElement.style.height = bottomGapHeight + "px";
404 this._topGapElement._active = !!topGapHeight; 404 this._topGapElement._active = !!topGapHeight;
405 this._bottomGapElement._active = !!bottomGapHeight; 405 this._bottomGapElement._active = !!bottomGapHeight;
406 406
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 this.element.scrollTop = index > 0 ? this._cumulativeHeights[index - 1] : 0; 579 this.element.scrollTop = index > 0 ? this._cumulativeHeights[index - 1] : 0;
580 this.refresh(); 580 this.refresh();
581 }, 581 },
582 582
583 /** 583 /**
584 * @param {number} index 584 * @param {number} index
585 */ 585 */
586 forceScrollItemToBeLast: function(index) 586 forceScrollItemToBeLast: function(index)
587 { 587 {
588 this._rebuildCumulativeHeightsIfNeeded(); 588 this._rebuildCumulativeHeightsIfNeeded();
589 this.element.scrollTop = this._cumulativeHeights[index] - this.element.c lientHeight; 589 this.element.scrollTop = this._cumulativeHeights[index] - this._visibleH eight();
590 this.refresh(); 590 this.refresh();
591 },
592
593 /**
594 * @return {number}
595 */
596 _visibleHeight: function()
597 {
598 // Use offsetHeight instead of clientHeight to avoid being affected by h orizontal scroll.
599 return this.element.offsetHeight;
591 } 600 }
592 } 601 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698