Questions tagged [browser-bugs]

36 questions
32
votes
3 answers

Thai line breaking: how to break Thai text effectively

Situation with Thai text on a client site is that we can't control where exactly particular words/sentences are going to break between the lines (how web browser will handle it). Often, content appearance is indicated as incorrect by local…
joooc
  • 583
  • 2
  • 5
  • 9
25
votes
3 answers

Why does IE nuke window.ABC variables?

When running the following block of code, FF and Chrome output typeof(hiya) = string while IE7/8 output typeof(hiya) = undefined.
etoleb
  • 923
  • 1
  • 8
  • 19
19
votes
3 answers

Should I use ^ and $ in html5 input regex pattern validation?

I've seen mostly examples without the ^ (circumflex) and $ (currency or dollar) characters to mark the beginning an end of the string being matched. However, I did not find anything regarding this in the html5 spec. Are they implicit in the pattern?…
Marco Luglio
  • 3,503
  • 1
  • 21
  • 27
11
votes
2 answers

Why are images centered vertically with `line-height` positioned 2 pixels below where they should be?

Short story: jsfiddle here. The behavior is consistently wrong in Chrome 21, Firefox 15 and IE9, which makes me think I'm misunderstanding something about the CSS spec. Longer story: I want to center an image vertically using line-height. I've set…
Dan Dascalescu
  • 143,271
  • 52
  • 317
  • 404
9
votes
3 answers

Is there a Reliable and Current Resource Listing Browser / Browser Version Bugs Available Anywhere?

I was surprised to be unable to find a solid resource that documents browser CSS, HTML and Javascript bugs. Obviously there are sites like http://caniuse.com/ and http://www.quirksmode.org/ which take things from the other direction, documenting…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
9
votes
0 answers

Safari text and divs juggled and out of place during jquery slide out

It is a strange bug and the site works perfectly in all browsers expect for this issue in Safari (testing in version 5.1.7 ) . Here is the link to my site. http://www.enrista.co.za/new-swap/?page_id=1669 If you click on the plus symbol to open up…
8
votes
2 answers

Chrome position:fixed and transformZ bug

Take a look at this demo in FF and Chrome, then remove: -webkit-transform:translateZ(0px); Fom css, and look again in Chrome. It also makes Chrome body container with min-width:100%, cutting content (not always). I need…
Rantiev
  • 2,121
  • 2
  • 32
  • 56
7
votes
3 answers

What methods can I use to reproduce a sporadic IE "A script on this page is causing Internet Explorer to run slowly" notification?

I'm trying to replicate a bug which the client has reported, it's the "this script is running slow" notification which appears in IE due to it's extremely slow JS/DOM parsing. This doesn't occur on my virtualbox IE6 ( client has IE6 ) nor does it…
meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
5
votes
2 answers

CSS Maintain Aspect Ratio not working

This is the strangest thing, I have used this method many times before but it seems to be breaking for me now. Here is a duplicate question that provides this method as an answer: Maintain the aspect ratio of a div with CSS But for some unknown…
IOIIOOIO
  • 3,899
  • 4
  • 14
  • 19
5
votes
3 answers

How to deal with IE9 html table bug where extra column shows up for some rows with partial view?

I see this question has already been asked around a IE9 but which is adding extra columns in random rows of a html table. The root issue seems to be a IE 9 bug that is fixed in IE 10 (but i have a lot of IE9 users) It states it usually happens with…
leora
  • 188,729
  • 360
  • 878
  • 1,366
3
votes
2 answers

How do browsers handle multiple function declarations with the same name?

How do browsers handle multiple function declarations with the same name? Specific test case is below - NOTE: I know this does not make sense to allow a server script to create more than one function declaration with the same name, but I am curious…
3
votes
2 answers

CSS transform causing div to overlap in Safari?

Why does transform:rotateY(); cause a div to overlap in Safari only? Here are some screen shots to better explain... What it should look like: What it shouldn't look like (only occurs in Safari): This is very strange behavior, I have since…
www139
  • 4,960
  • 3
  • 31
  • 56
3
votes
5 answers

Red spellcheck squiggles remain in chrome after editing is disabled

UPDATE: This has been identified as a bug in Chrome. (Thanks @michael-robinson) In Chrome (v22 at least), I notice that it's possible for spellchecking "red squiggly" underlines to remain even after contentEditable has been disabled. I made a…
aaaidan
  • 7,093
  • 8
  • 66
  • 102
3
votes
3 answers

Is there a javascript library to fix IE rendering bugs?

Our website looks great in all browsers except IE 6-8. We're not even using many CSS3 features. These are just plain old IE rendering bugs (like margins and padding). Before trying to apply a bunch of IE specific fixes, I was wondering if anyone…
Andrew
  • 227,796
  • 193
  • 515
  • 708
3
votes
1 answer

Does Chrome incorrectly display this SVG pattern?

I have the following inline SVG code in my HTML5 file (http://jsfiddle.net/Jbfw2/):
1
2 3