I wrote a little test project with asp.net MVC3 and HTML5. Maybe I am stupid or I found a bug in the preview of Internet Explorer 10.
The testcase:
Create an asp.net MVC3 Project as an Internet Application with VS2010. Open the index file and write a html5 section attribute with some text inside into the file and save it. Add an ID to the section and set a background color in site.css to it. Start the app. Everything will work fine. You will see the text and the section has the color you defined. Now create an Account go to the LogOn Page und do a login. In my case the section no longer has the color I defined - really strange. After pressing F5 the color was back again.
I looked in the source code and everything seemed to be okay, there was a section in it but after a little research I found out that in the debugger the html code wasn't okay. The Problem is: After calling a MVC3 RedirectToAction Method (that is what happens when you do a login), the IE10 can not handle the section attribute anymore. It doesn't exist in the source code of the integrated debugger. I tried the Code in all other new Browsers and it works perfectly.
It would be very nice if someone could test and check if the problem is me or the browser. When the problem is me please write me a solution :P
Many greetings ;)