Side navigation
#3319 closed bug (duplicate)
Opened September 03, 2008 04:31AM UTC
Closed January 14, 2009 04:20AM UTC
After() bug in firefox 3
Reported by: | nikavo | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | Cc: | nikavo, flesler | |
Blocked by: | Blocking: |
Description
Hello
Here is an exemple of bug error, thank you :
<script type='text/javascript' src='http://code.jquery.com/jquery.js'></script>
<script type="text/javascript">
$(function() {
$('#div2').insertBefore($('#div1'));
});
</script>
<body>
<div class="g" id="div1">
<script type="text/javascript" src="http://feedjit.com/serve/?bc=FFFFFF&tc=494949&brd1=336699&lnk=494949&hc=336699&ww=160"></script><noscript><a href="http://feedjit.com/">Feedjit Live Blog Stats</a></noscript>
</div>
<div class="g" id="div2">
<script type="text/javascript" src="http://feedjit.com/map/?bc=FFFFFF&tc=494949&brd1=336699&lnk=494949&hc=336699&dot=FF0000"></script><noscript><a href="http://feedjit.com/">Feedjit Live Blog Stats</a></noscript>
</div>
</body>
Attachments (1)
Change History (3)
Changed September 03, 2008 04:41PM UTC by comment:1
cc: | → nikavo, flesler |
---|---|
component: | tests → core |
owner: | joern |
Changed September 06, 2008 02:55AM UTC by comment:2
Thank you
There is no problem if the html is not valid
The problem that this exemple is bugging on firefox3, execute the code on firefox and see the source code!
Thank you!
<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01 TransitionalEN" "http:www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type='text/javascript' src='http://code.jquery.com/jquery.js'></script>
<script type="text/javascript">
$(function() { $('#div2').insertBefore($('#div1')); });
</script>
</head>
<body>
<div class="g" id="div1">
<script type="text/javascript" src="http://feedjit.com/serve/?bc=FFFFFF&tc=494949&brd1=336699&lnk=494949&hc=336699&ww=160"></script>
</div>
<div class="g" id="div2">
<script type="text/javascript" src="http://feedjit.com/map/?bc=FFFFFF&tc=494949&brd1=336699&lnk=494949&hc=336699&dot=FF0000"></script>
</div>
</body>
</html>
What is exactly the problem you see ?
Your test case is far from valid html.