You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li>includes normalized styles for unknown elements</li>
24
+
<li>fixes createElement/createDocumentFragement for unknown elements</li>
25
+
</ul><h4>
26
+
<aname="user-content-as-of-april-18th-2011-html5shim-html5shiv-modernizr-all-have-been-updated-to-use-iepp-v2" class="anchor" href="#as-of-april-18th-2011-html5shim-html5shiv-modernizr-all-have-been-updated-to-use-iepp-v2" aria-hidden="true"><spanclass="octicon octicon-link"></span></a><strong>As of April 18th, 2011</strong>, <ahref="http://code.google.com/p/html5shim/">html5shim</a>, <ahref="http://code.google.com/p/html5shiv/">html5shiv</a>, <ahref="https://github.com/Modernizr/Modernizr">modernizr</a> all have been updated to use iepp v2.</h4>
<p>here is the list of fixed issues and made changes. I have also added a list of known issues (The first one is really critical, but needs a lot work...).</p>
<li>print error on second print/print preview</li>
38
+
<li>allow styling through body id (i.e.: <code>body#some-id article</code>)</li>
39
+
<li>wrong selector parsing in IE8 (subbug: <code>@media print { }</code> blocks in <code>media=all</code> stylesheets are ignored, but fixed a lot more than just that)</li>
40
+
<li>alternate/disabled stylesheets aren't parsed (can solve problems with mediaqueries polyfills/styleswitchers)</li>
41
+
<li>styles with multiple media declaration or mediaqueries (i.e.:<code>media="screen, projection"</code>, <code>media="only screen..."</code>) are not used as print styles (unless, they have print or all medium) (this also fixes a lot of slowness and crashes)</li>
42
+
<li>reset default media type to <code>"all"</code>, with every new stylesheet (fixes errors, if a stylesheet had no media attribute, but the previous had a non-print media-attribute)</li>
<li>iepp.html5elements: override shimed html5elements (developer can add additional html5elements or reduce the elements)</li>
51
+
<li>iepp.disablePP: disables print protection without disabling standard shiv (in case, print protection causes too much trouble, it's still a big hack)</li>
<code>@media screen {}</code> blocks in media all are treated as print-styles (This would need a big rewrite)</li>
64
+
<li>selector order (Currently, this seems "by design", but should be changed. Also needs a big rewrite)</li>
65
+
<li>change of selector specificity (<code>.iepp_article <-> article</code>) (Currently this seems "by design", but for IE7 and IE8, it can be changed to<code>[data-iepp-elem="article"]</code><-> <code>article</code>)</li>
66
+
</ul><p>Before someone is looking into the first two known issues, we should create good performance tests. Fixing last issue only makes sense, if we also fix the selector order...</p>
0 commit comments