Skip to content

Commit

Permalink
- Summary:
Browse files Browse the repository at this point in the history
table doesn't not get rendered to browser in IE10 compatible mode
- Description of Issue: 
Using attached report. There is a table with "display" property marked
as none. The hidden table is not rendered to browser in IE10 compatible
mode. Engine side should be fixed. 
- Description of Resolution: 
fixed by modifying the ie7 identification function in Birt
- TED(s) Resolved:
71973
- Regression ( Yes/No ):
NO

- Code Owner Team: 
CE Team

- Code Reviewers: 
Wei Yan

- Project ID:
1970
- Manual Test Description: 
tested at ID 10 campatible

- Test Automated Cases Executed(Yes/No, if “No”, then explain why):

No, need visual check
- Special Notes: 
None
  • Loading branch information
mwang committed Apr 29, 2014
1 parent 0635f10 commit d93847a
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -138,14 +138,14 @@ ILayoutManager createLayoutManager( HTMLAbstractLM parent,
return factory.createLayoutManager( parent, content, executor, emitter );
}
//http://msdn.microsoft.com/en-us/library/ms537503%28v=vs.85%29.aspx
//TED 71973
protected boolean isIE7( String userAgent )
{
if ( userAgent != null )
if ( ( userAgent != null ) && (! userAgent.contains( "; Trident/" )) )
{
if ( ( userAgent.contains( "; MSIE 5" )
if ( userAgent.contains( "; MSIE 5" )
|| userAgent.contains( "; MSIE 6" )
|| userAgent.contains( "; MSIE 7" ))
&& (! userAgent.contains( "; Trident/" )))
{
return true;
}
Expand Down

0 comments on commit d93847a

Please sign in to comment.