Tagged Questions
The reflow tag has no wiki summary.
11
votes
1answer
336 views
Why does ie apparently reflow DOM when encountering <fb:xxx> fbml elements when correctly using the fbml xmlns?
I have a page containing a number of facebook "Like" buttons, embedded using the inline fbml technique (as opposed to iframe). Simple enough. The page renders fine, everything works as expected.
...
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
131 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 ...
5
votes
1answer
67 views
Reflowing comment blocks with vim
I'm cleaning up someone else's code and working with vim. I'd like to reflow the comments so that they're formatted consistently.
For example:
# one two three four five six seven
# eight ...
4
votes
1answer
208 views
Firefox: Is there a way to suspend reflow during heavy DOM manipulations?
I need to do heavy DOM manipulations on the whole document of webpages in an Add-On I write. I would like to minimize the reflows so only one reflow happens for all my manipulations. Removing the body ...
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
531 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
1answer
79 views
White marks appearing on my popup menu
I've got a popup menu div that is shown and hidden with the following jQuery:
$('#' + mnu).show('slide', { direction: 'down' }, 300);
In IE9 it displays correctly:
...but in IE7, it shows some ...
2
votes
2answers
447 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
695 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 ...
2
votes
1answer
111 views
Is there a way to determine when CSS parsing/rendering has completed?
Wondering for benchmarking purposes if there is a DOM event or other way to determine when the browser has finished parsing/rendering the CSS. I'm trying to optimize CSS selectors and need a way to ...
1
vote
1answer
43 views
Looking for a browser reflow benchmark
I work on a embeded opera implementation and want to test the real performance. I have done the sunspider js benchmark and want to know the html/css performance now.
Are there any good reflow ...
1
vote
2answers
51 views
Is there a libraray/method for 80 column formatted text output?
Here is what I'm looking for.
I'd like to find a library or method that formats output text, such that it word wraps at
80 columns (or user configurable), and allows user defined indentation.
I know ...
1
vote
1answer
76 views
Why does a transition occur when showing an element after setting a property while the element is hidden?
A live example can be seen here.
A red square (showing) is directly above a green square (hidden as overflow). Click on the square, and both colored squares are instantly made fully transparent. ...
1
vote
1answer
177 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
429 views
Browser Repaint/Reflow performance: using CSS3 Gradients vs PNG Gradients
I am working at an app that causes lots of browser reflows. Performance is a key issue here. From the performance point of view Is it better to use a CSS3 gradient or an image gradient for some DOM ...
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
...
1
vote
3answers
847 views
How can I force a webpage page to render at a minimum resolution, regardless of how small the viewport shrinks?
I am rather new to complex CSS, and have a question- I have a page which positions a floating element along the bottom of the page. It does so by setting the Bottom: 0, and Position: Absolute.
When ...
0
votes
1answer
59 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 ...
0
votes
1answer
38 views
Reflowable mix of TextViews and EditTexts?
I am trying to make a sentence-filling like interface, where I can have TextViews and EditTexts mixed arbitrarily in a paragraph.
I have had a look at this question, but the problem was that when I ...
0
votes
2answers
222 views
Webkit reflow problem when dynamically changing border to DOM element
I have two div elements where one wraps around the other. Then I use JavaScript to add border to the outer div in runtime. Somehow webkit based browser doesn't do a reflow when the outer border is ...
0
votes
0answers
204 views
Preventing HTTP REQUEST on javascript DOM update
I am getting re-execution of imported js files upon a hitting a form button which calls a function to insert a DOM element into page ( in simulation to exe of an ajx callback function). The DOM ...