The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
73 views

How can I avoid this inline Javascript?

I have a wordpress site. Under single.php, I have the following body tag <body <?php body_class(); ?> onLoad="func(<?php echo $thePostID?>);" > Reading articles on the web ...
0
votes
0answers
30 views

In html, when the scroll bar is created? In the reflow phrase, or in the repaint phrase?

I have a div, which has max-height css property (say, max-height:400px;overflow-x: hidden; overflow-y: auto;). Then, I append some child dom into this div dynamic through javascript, until the ...
9
votes
3answers
340 views

What is causing this long delay when I clear a form input (in chrome)?

Summary Clearing the text in a form input is causing a long delay (multiple seconds) in Chrome. It seems that this is causing a reflow or recalculation of computed styles, but I'm not sure. Chrome's ...
5
votes
1answer
104 views

How many Reflows does attaching a DocumentFragment Cause?

Using DocumentFramgment allows us to attach DOM elements to each other without causing a browser reflow (i.e. work with offline DOM trees). A lot of libraries like jQuery use document fragments to ...
0
votes
1answer
52 views

Issue with paint time using bootstrap carousel

So I'm using Bootstrap Carousel to create a simple slider, but the issue is that when the transitions are fired for the first time the paint time takes a lot for each slide, but after that they seem ...
1
vote
0answers
55 views

Browser “buffers” mouse events while paint/reflow

I am creating a GWT Application where I am displaying a list of elements, using a CellList and a ListDataProvider. The data I want to display in each Cell consists only of two strings. I created a ...
0
votes
2answers
66 views

Alternatives to re-flow and re-paint

I've read on SO and elsewhere that re-paints and re-flows are expensive for the browser to perform. I'm curious about CSS/JS alternatives to re-paint/display:none and re-flow/visibility:hidden that ...
0
votes
0answers
99 views

Performance of HTML data attribute and CSS content attribute

I have a counter like Twitter that displays the remaining characters inside an input field. In terms of performance (repaint & reflow) which method would you suggest is the best? I’m using jQuery ...
0
votes
1answer
237 views

Can't manipulate width of Facebook Like Button

I have a sidebar 200px wide and the Facebook Like button I have placed inside it is running outside the boundaries of the DIV. Are there any workarounds to get the Like box text to recognise the 200px ...
0
votes
0answers
195 views

PageSpeed - Eliminate unnecessary reflows

This is my first question and I did search this site but the only related questions I found did not have an answer that made sense. I am trying to solve the "unnecessary reflows" experimental rule. ...
0
votes
1answer
495 views

How to stop android webview content reflow when double tapped?

First of all, I would like the WebView can be scrolled but it need to behave just like a picture such that the scrolling would not cause the WebView to rearrange its layout to fit screen. It should ...
23
votes
2answers
482 views

Control and measure precisely how long an image is displayed

For a reaction time study (see also this question if you're interested) we want to control and measure the display time of images. We'd like to account for the time needed to repaint on different ...
12
votes
2answers
390 views

HTML like layouting

I'm trying to implement my own little flow-based layout engine. It should imitate the behavior of HTML layouting, but only the render-tree, not the DOM part. The base class for elements in the ...
0
votes
2answers
95 views

How to listen for layout changes on a specific HTML element?

What are some techniques for listening for layout changes in modern browsers? window.resize won't work because it only fires when the entire window is resized, not when content changes cause reflow. ...
2
votes
1answer
69 views

CSS change height of element hardware accellerated on ipad

Working on a HTML5 app for iPad I would like to change the height of an element hardware accellerated. I have created a viewport (parent, overflow:hidden) on a child-element (absolutly positioned, ...
1
vote
1answer
146 views

Avoiding zIndex by appending dom elements

So I'm trying to control the stacking of equally-sized elements via z-index. Now an idea that I came across recently to avoid going through z-indices and improve performance times by hopefully to ...
0
votes
2answers
108 views

Prevent UI Reflow in Android when the keyboard appears

I have an App called Countdown Calendar (It is a widget that counts down the days to events in your Google Calendars; fixing minor bugs atm). But the bug I am trying to fix right now has to do with ...
0
votes
3answers
201 views

Can accessing layout information also cause browser reflows?

I know that setting the style properties causes browser reflows . Is it possible that browser reflow also happens while accessing layout properties .If yes can you please give a specific example why ...
2
votes
1answer
69 views

What is the benefit of tagged PDF in comparison with logical PDF in reflowing

I'm making a PDF viewer and try to make reflowing. I read the PDF Reference 1.7 http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/pdf_reference_1-7.pdf When I read the ...
2
votes
2answers
446 views

How to force a reflow in javascript in webkit 1.2.5

I've tried everything that is supposed to invoke a reflow but that isn't happening. I'm calling my test function 10 times to draw some element on my screen and I move that element through each ...
1
vote
1answer
324 views

Force reflow of the DOM container for a resized SVG element in Chrome

See the problem in action: http://jsfiddle.net/krtGd/1/ I have an embedded SVG element in a floating div, something like this: <div style="float: left;"> <svg width="50" height="20" ...
1
vote
1answer
191 views

Triggering lesser reflows in JavaScript - How to edit elements in cloned element?

I have this HTML structure: <p id="lorem"> <span class="part" id="n01">L</span><span class="part" id="n02">o</span><span class="part" ...
2
votes
4answers
191 views

Efficient Javascript for DOM modifications

Say, I've got an HTML file that I want to process using Javascript. For example: Add some DOM elements, like span or div wrappers. Change the document styling a bit, like base font size, ...
11
votes
2answers
317 views

Is there a way in Javascript to time a browser reflow?

I need to be able to benchmark a particular build of a webkit-based browser and am measuring the length of time it takes to do certain stuff like DOM manipulation, memory limits etc. I have a test ...
1
vote
1answer
179 views

jQuery animate width without reflow of content?

I've searched here and googled for hours, but have yet to find a solution to this problem... Basically, I have a giant list of icons that once each list item is hovered, it expands to reveal the ...
0
votes
1answer
244 views

Raphael.js — the script seems light, but the execution is heavy — why?

I am using Raphael 2.01, Firefox 12.0, on Windows XP. I've tried continuous object motion (not tween animation). I think the load by my script is light, but the sound of the PC's cooling fan will be ...
0
votes
1answer
181 views

HTML Table Filtering and Reflow

I have a very large html table with 900+ rows. I have filtering enabled by looping through the rows and hiding/showing rows according to the value of the filter. Here's the problem. When I ...
1
vote
1answer
236 views

CSS / JS for image-in-grid alternative for radio button selector?

Are there any CSS toolkits that let you reproduce radio button functionality but using photos / images laid out in a grid? For example, a grid of auto models on a rental car site, where the user needs ...
1
vote
1answer
641 views

Combine / batch multiple CSS updates in different DOM elements to reduce reflows / repaints?

Background: I've got a HTML page that uses a WebGL canvas to display some 3D content. Overlayed are multiple <div> that are placed by inline CSS with position: absolute and relevant dimensions ...
0
votes
1answer
915 views

text-transform: uppercase causes layout error on Chrome

I've run across a strange layout bug that appears to be triggered by the text-transform CSS property when an inline-block is nested within a block element. I saw the problem on Safari (5.1.2) as ...
0
votes
1answer
479 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 ...
6
votes
1answer
394 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 ...
1
vote
1answer
166 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 ...
2
votes
2answers
161 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 ...
2
votes
1answer
561 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 ...
2
votes
1answer
194 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. ...
2
votes
1answer
178 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 ...
1
vote
1answer
483 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. ...
8
votes
1answer
497 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 ...
0
votes
1answer
76 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 ...
11
votes
1answer
571 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. ...
1
vote
1answer
1k 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, ...
5
votes
2answers
950 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
2k 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
2answers
757 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 ...
0
votes
2answers
312 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 ...
4
votes
1answer
329 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 ...
2
votes
1answer
145 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 ...
7
votes
1answer
2k 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 ...
2
votes
2answers
964 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 2