| 35 |
my $geckover = $1; |
my $geckover = $1; |
| 36 |
$flag->{media_type_no_rdf_plus_xml} = 1; |
$flag->{media_type_no_rdf_plus_xml} = 1; |
| 37 |
$flag->{http_no_see_other} = 1 if $geckover > 20030331; |
$flag->{http_no_see_other} = 1 if $geckover > 20030331; |
| 38 |
|
$flag->{html_no_table_abbr} = 1; |
| 39 |
|
|
| 40 |
## Opera |
## Opera |
| 41 |
} elsif ($ua_name =~ m#\bOpera/([0-9]\.[0-9]+)#) { |
} elsif ($ua_name =~ m#\bOpera/([0-9]\.[0-9]+)#) { |
| 48 |
my $mozver = 0+$1; |
my $mozver = 0+$1; |
| 49 |
$flag->{html_no_pi} = 1; |
$flag->{html_no_pi} = 1; |
| 50 |
$flag->{html_no_id} = 1; |
$flag->{html_no_id} = 1; |
| 51 |
|
$flag->{html_no_table_abbr} = 1; |
| 52 |
$flag->{media_type_no_xml} = 1; |
$flag->{media_type_no_xml} = 1; |
| 53 |
$flag->{html_no_latin1} = 1 if $mozver < 3; |
$flag->{html_no_latin1} = 1 if $mozver < 3; |
| 54 |
## ISSUE: Is NN3 support latin-1 character on Japanese Windoze? |
## ISSUE: Is NN3 support latin-1 character on Japanese Windoze? |
| 93 |
$flag->{http_refresh_no_quoted_url} = 1; |
$flag->{http_refresh_no_quoted_url} = 1; |
| 94 |
} |
} |
| 95 |
$flag->{media_type_no_app_js} = 1; |
$flag->{media_type_no_app_js} = 1; |
| 96 |
|
$flag->{html_no_table_abbr} = 1; |
| 97 |
$flag->{stylesheet_non_standard} = 1 if $iever >= 3; |
$flag->{stylesheet_non_standard} = 1 if $iever >= 3; |
| 98 |
$flag->{ua_netscape4} = 0; |
$flag->{ua_netscape4} = 0; |
| 99 |
} |
} |
| 101 |
} elsif ($ua_name =~ m#^Microsoft Internet Explorer\b#) { |
} elsif ($ua_name =~ m#^Microsoft Internet Explorer\b#) { |
| 102 |
$flag->{html_no_id} = 1; |
$flag->{html_no_id} = 1; |
| 103 |
$flag->{html_no_div} = 1; |
$flag->{html_no_div} = 1; |
| 104 |
|
$flag->{html_no_table_abbr} = 1; |
| 105 |
$flag->{http_no_see_other} = 1; |
$flag->{http_no_see_other} = 1; |
| 106 |
$flag->{stylesheet_no_css} = 1; |
$flag->{stylesheet_no_css} = 1; |
| 107 |
} elsif ($ua_name =~ /^Infomosaic\b/) { |
} elsif ($ua_name =~ /^Infomosaic\b/) { |
| 108 |
$flag->{media_type_no_parameter} = 1; |
$flag->{media_type_no_parameter} = 1; |
| 109 |
$flag->{html_no_id} = 1; |
$flag->{html_no_id} = 1; |
| 110 |
$flag->{html_no_div} = 1; |
$flag->{html_no_div} = 1; |
| 111 |
|
$flag->{html_no_table_abbr} = 1; |
| 112 |
$flag->{stylesheet_no_css} = 1; |
$flag->{stylesheet_no_css} = 1; |
| 113 |
} |
} |