Bug Tracker

Ticket #2210 (closed bug: wontfix)

Opened 11 months ago

Last modified 7 months ago

problem with safari and xhtml

Reported by: elvan49 Assigned to: flesler
Type: bug Priority: trivial
Milestone: 1.2.4 Component: core
Version: 1.2.2 Keywords:
Cc: Needs: Test Case

Description

i've built a site with php/mysql and jquery. In safari some page display a jquery function because of the tag br and img (line 775). My tags were in the xhtml format (<br/>) and this fact created a bug. I've added a control in the jquery library to fix this bug :

if ( typeof arg == "string" ) {
				if ( !jQuery.browser.safari ){
					// Fix "XHTML"-style tags in all browsers
					arg = arg.replace(/(<(\w+)[^>]*?)\/>/g, function(m, all, tag){
						return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i)? m : all+"></"+tag+">";
					});
				}

But i'm sure that it's not acceptable... Sorry for my poor english ! All of the problem is related there : http://www.developpez.net/forums/showthread.php?t=477647

Attachments

Change History

Changed 10 months ago by joern

  • owner changed from joern to david
  • component changed from web to core

Changed 7 months ago by flesler

  • need changed from Review to Test Case
  • milestone changed from 1.2.3 to 1.2.4

Line 775 where ?

Could you provide a test case ? that is, an html file with the style and js used. Thanks

Changed 7 months ago by flesler

  • owner changed from david to flesler
  • status changed from new to assigned

Same as #2194. Could you provide the exact Safari 2 version you're using ?

Changed 7 months ago by flesler

  • status changed from assigned to closed
  • resolution set to wontfix

Ok, found the version and the problem.

Same as #2035.

Note: See TracTickets for help on using tickets.