I was starting to worry that I might need a 30Mb chromium plugin. But after some tests I found that the "IE9 Standards" emulation gives the best display for HTML5 and CSS. The following Registry settings with 9000 as the DWORD will improve NeoBook display and performance...
For IE9 Standards mode the DWORD is 9000 and it will appear as 0x2328 when entered in the reigistry:
Browser Emulation
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
Main
FeatureControl
FEATURE_BROWSER_EMULATION
yourNeoBookprogram.exe = (DWORD) 00009000
To control the value of this feature by using the registry, add the name of your executable file to the following setting and set the value to match the desired 9000 setting.
-----------------------
Child Window Clipping
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
Main
FeatureControl
FEATURE_ENABLE_CLIPCHILDREN_OPTIMIZATION
yourNeoBookprogram.exe = (DWORD) 00000001
The feature is enabled when the value is set to (DWORD) 00000001 and disabled when the value is (DWORD) 00000000.
---------------------
Circular References in Script Management
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
Main
FeatureControl
FEATURE_MANAGE_SCRIPT_CIRCULAR_REFS
yourNeoBookprogram.exe = (DWORD) 00000001
The feature is enabled when the value is set to (DWORD) 00000001 and disabled when the value is (DWORD) 00000000.
Note Because this feature improves the stability of Internet Explorer, disabling this feature is strongly discouraged.
-------------------------------
Cross Domain Capture Event
The FEATURE_BLOCK_SETCAPTURE_XDOMAIN feature prevents capture events from being propagated to elements in webpages hosted on domains different than the one hosting the page containing the element that triggered the capture event.
By default, this feature is enabled for Internet Explorer 8 and for applications hosting the WebBrowser Control. To disable this feature by using the registry, add the name of your executable file to the following setting.
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
Main
FeatureControl
FEATURE_BLOCK_SETCAPTURE_XDOMAIN
yourNeoBookprogram.exe = (DWORD) 00000001
The feature is enabled when the value is set to (DWORD) 00000001 and disabled when the value is (DWORD) 00000000.
----------------
Cross Domain Redirection
When enabled, the FEATURE_CROSS DOMAIN_REDIRECT_MITIGATION feature applies cross-domain security to support files loaded by a webpage, including images, JavaScript libraries, Cascading Style Sheets (CSS) files, Microsoft ActiveX controls, and other file-based resources.
Note For security reasons, this feature should not be changed.
By default, this feature is enabled for Internet Explorer 8 and for applications hosting the WebBrowser Control. To disable this feature by using the registry, add the name of your executable to the following setting.
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
Main
FeatureControl
FEATURE_CROSS_DOMAIN_REDIRECT_MITIGATION
yourNeoBookprogram.exe = (DWORD) 00000001
The feature is enabled when the value is set to (DWORD) 00000001 and disabled when the value is (DWORD) 00000000.
http://msdn.microsoft.com/en-us/library/ee330730%28v=vs.85%29.aspx#browser_emulationNote: The changes will not appear in the testing environment. Only the compiled program with whatever name you enter before the DWORD will show the corrected display....
