Ticket #706 (closed defect: invalid)

Opened 7 years ago

Last modified 7 years ago

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

Changed 7 years ago by ray

  • status changed from new to closed
  • resolution set to invalid

consider the rules of HTML The only place where style-tags are allowed in HTML is inside the head section The structure has always to be like this

<html>
 <head>
  <!--...title, etc.--->
  <style>
  /*Styles here*/
  </style>
 </head>
 <body>
 ....
Note: See TracTickets for help on using tickets.