Ticket #706 (closed defect: invalid)
IE strips out style after body in fullscreen mode.
| Reported by: | adam@… | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | Version 1.0 |
| Component: | Plugin_Fullscreen | Version: | |
| Severity: | major | Keywords: | Fullscreen Style IE |
| Cc: |
Description
Content in style tags is removed in IE if it appears after the body tag. This is not a problem in firefox.
For example this is ok:
<style> body{
color:red;
} </style> <body> test </body>
This is not ok:
<body> <style> body{
color:red;
} </style>
This gets transformed into:
<html>
<head>
</head> <body><style></style>test </body></html>
Change History
Note: See
TracTickets for help on using
tickets.
