Tagged Questions
8
votes
1answer
2k views
How can I force reflow after DHTML change in IE7?
I have a page where the user can dynamically add file upload boxes. Adding the boxes changes the height of the div they are in, but certain elements of the div below it stay in the same place, so ...
7
votes
1answer
132 views
cssText or individual stylename?
When we are applying a lot of style changes using JavaScript to a single element, phpied & Writing Efficient JavaScript (slide 87) suggests:
instead of applying styles one by one using ...
4
votes
3answers
3k views
When does reflow happen in a DOM environment?
What kinds of activities will trigger reflow of web page with DOM?
It seems there are different points of view. According to http://www.nczonline.net/blog/2009/02/03/speed-up-your-javascript-part-4/, ...
3
votes
1answer
534 views
What's the difference between reflow and repaint?
I'm a little unclear on the difference between reflow + repaint (if there's any difference at all)
Seems like reflow might be shifting the position of various DOM elements, where repaint is just ...
3
votes
2answers
137 views
Are an element's dimensions readable immediately upon adding it to the DOM tree?
Suppose I dynamically create a DIV using document.createElement, add some inner text, and want to determine its height and width. I can see that before adding the DIV to the DOM tree, properties such ...
2
votes
2answers
448 views
Measuring Reflow and Paint times in WebKit
I'm designing a JavaScript/HTML-driven user interface on embedded hardware with weak CPU and WebKit.
Performance is not ideal, and I want to profile the application, especially timing the reflow and ...
2
votes
3answers
698 views
WebKit Rendering Issue when using overflow: hidden;
I've run into what seems to be a rendering issue in webkit when using overflow: hidden; on a child div and then increasing the height of a parent div using javascript. I've boiled my issue down to ...
1
vote
1answer
178 views
Preventing HTML reflow
I'm working on a webpage with user-resizable columns, and I'm having trouble with reflow when a column is resized, which causes elements to be pushed down and out of alignment as the column narrows. ...
1
vote
1answer
575 views
IE8 compatibility mode (or maybe IE7) reflow bug related to css position relative
Has anyone any comments about fallowing behaviour?
I've tested it on IE8 in compatibility mode, but i'm not sure about real IE7 behaviour.
Any other browsers behave normally.
When document reflows, ...
1
vote
2answers
512 views
Javascript: Does modifying scrollTop/scrollLeft trigger browser reflow?
I'm wondering if animating the scrollbars with Javascript triggers browser reflow.
Any difference across different browser implementations?
window.pageXOffset & window.pageYOffset
...
0
votes
1answer
61 views
combining documentfragment and replacechild to minimize reflow
I'm making a javascript game without using canvas, and I want the screen to reflow only once per cycle, for speed. Is there a way for documentFragment to replace named elements?
EDIT:
The javascript ...
0
votes
1answer
77 views
Does the browser's render reflow if element's position is absolute?
If I have an element with an absolute position and I change it's left and top position will reflow to it's parent children? and what about it's own children if they are not affected as they are also ...