2012年5月4日金曜日

IEのレンダリングモードをタグで明示的に指定する | モノについてのモノ語り


IEのレンダリングモードをタグで明示的に指定する地震の影響で日本語版は、リリースが延期になったが、「Internet Explorer 9」がリリースされた。

私も英語版をダンロードしているが、パフォーマンス面で大きな改善が見られる。

ウェブ標準準拠については、IE8で個人的に満足が行くレベルになっていたし、HTML5やCCS3へ新たに準拠しているが、これについては実際に恩恵に預かるのは、まだ先の事と考えている。

私が管理しているHPも当面はXHTMLで記述するつもりだ。

ともあれ、他の主要ブラウザと比較しても遜色のないレベルに仕上がっており、近年のIEとしては、評価に値するバージョンだ。

しかし、ウェブ作成者の立場で、1つ気に入らない点がある。

正確にはIE8から実装された機能だが、アドレスバーに「(後方)互換モード」への切り替えボタンが表示される点が気に入らない。

世の中には、様々なウェブサイトが存在する。

W3Cが勧告するウェブ標準に沿った記述がされているサイトもあれば、ウェブ標準からズレたサイトもある。

その為、多くのブラウザは、複数のレンダリングモードを持ち、ウェブ標準に従ったサイトも、そうでないサイトも、綺麗に表示されるように工夫されている。

実際、FireFoxなどにも、ウェブ標準に基づいた解釈する「標準モード」や「ほぼ標準モード」の他、「(後方)互換モード」というウェブ標準からズレたサイトを表示するレンダリングモードが実装されている。

通常は、HTML上の「DOCTYPE」の記述によって、ブラウザがレンダリングモードを自動的に判断してる。

勿論、IEも例外ではない。

しかし、IE8以降では、ユーザーが「互換モード」へ明示的に切り替えるためのボタンが付いている。


プロデューサー、 cosumersおよび分解は何ですか

IEの場合、過去の経緯から「DOCTYPE」での判断だけでは、不順分なため、「もし、綺麗に表示されなかったら押して下さい。」的な、親切機能として付いているのだが、逆に、「DOCTYPE」による自動判断で正しいレンダリングモードが選択されるような記述を行なっているウェブ作成者にとっては、不愉快な機能だ。

書類が破れたように見えるアイコンで、見た目も良くない。

加えて、ユーザーが間違って押せば、予想外の結果を招く可能性もある。

そこで、IE8が登場してからは、このアイコンを消すためのだけに、ある「metaタグ」を追加してきたが、このブログには、追加していなかった。

IE8やIE9には、ブラウザモードとドキュメントモードという2つのモードがある。

ブラウザモードは、ブラウザの「振る舞い」を決め、ドキュメントモードは、所謂、レンダリングモードを指し、描画を決定している。

IE8やIE9を開いた状態で、「F12」キーを押すと、開発者ツールが表示されるが、ここで、ブラウザモードとドキュメントモードが切り替えられ、様々な描画条件での表示を確認する事ができる。

これはあくまで、開発者ツール上の機能で、一般向けではない。

ユーザーやサイト作成者が、ブラウザモードやドキュメントモードを明示的に指定する方法もあるが、正しく、HTMLを記述してさえいれば、通常は全く意識しなくて良い。

IE9では、4つのブラウザモードを実装してる。

  • IE9・・・IE9して振舞う。
  • IE9互換・・・「互換モード」ボタンを押したときに、このモードになる。IE7として振る舞うが、サーバーが受け取るユーザーエージェントから、本当はIE9であることも分かる。
  • IE8・・・IE8として振舞う。
  • IE7・・・IE7として振舞う。

具体的にブラウザモードを説明すると、ブラウザモードの切替で、IE9でも、IE7のように振舞わせる事ができる。


例えば、ブラウザモードをIE7に切り替えれば、サーバーが受け取るユーザーエージェントのバージョン情報もIE7になる。

しかし、ドキュメントモードは、別だ、ブラウザモードの切り替えだけでは、ドキュメントモードは変わらない。

ブラウザモードがIE7だが、ドキュメントモードはIE9標準という事もあり得る。

ただし、「互換モード」ボタンを押した時は、ブラウザモードだけでなく、ドキュメントモードも自動的に変更されるようになっているようだ。

ドキュメントモードは、描画、つまりサイトの見た目に影響する。

IE9に実装されているドキュメントモードは4つだ。

  • IE9標準・・・(標準モードの)IE9での描画になる。
  • IE8標準・・・(標準モードの)IE8での描画になる。
  • IE7標準・・・(標準モードの)IE7での描画になる。
  • Quirksモード(所謂、互換モード)・・・IE5での描画に近い。

ドキュメントモードは、HTML上の「DOCTYPE」の記述に従って自動選択されるので、「DOCTYPE」を正しく記述していれば意識する必要はない。

しかし、HTML側で明示的にドキュメントモードを指定する「meta」タグがIEでは用意されている。

細かな文法は割愛するが、下記のような「meta」タグだ。

上記の例では、IE8で参照した場合は、ドキュメントモードは、IE8標準モード、IE9で参照した場合は、IE9の標準モードが選ばれ、「互換モード」ボタンが表示されなくなる。

追加しなくても良い、むしろ不要なタグだと思うが、IE8、IE9から「互換モード」ボタンを消したい場合は、最も手軽の方法だ。

このタグは、ドキュメントモードのみを変更し、ブラウザモードやサーバーが受け取るユーザーエージェントには影響を与えない。


少なくとも、IE8ではそうであったが、IE9では、少し違うようである。

ドキュメントモードは変化しないが、サーバーが受け取るユーザーエージェントは、ドキュメントモードに合わせて変化する。

私は、ドキュメントモードやユーザーエージェント、その他の振る舞いを確認できるページを作成してチェックした。

以下で、ブラウザーモード、ドキュメントモード、ユーザーエージェントなどを確認できるHTMLをダウンロード出来るようにしておく。

サイズ:2KB

さて、ここまでは、横道。

本題は、このサイトから「互換モード」ボタンを消す事であるが、私がWordPressで使用しているテーマ「Weaver 2.0」の場合、HTML5を先取りしたのか「DOCTYPE」や「meta」タグの記述が少し変わっている。

もし、気になるなら、まずは、これを変更する。

現時点ではHTML5に関する知識がないので正しく判断できないが、おそらく、このテーマはHTML5で記述されている。

試した限りでは古いブラウザでも表示に問題はなく、必ずしも、この修正は必要ではない。

変更は、テンプレートの「ヘッダー(header.php)」に対して行う。

まず、

?>  >    

という記述を

'; ?>       xml:lang="ja">    

と置き換えた。

ほとんどのブラウザで、レンダリングモードとして標準モードが選択される記述だ。

'; ?>

と言う宣言文は、XHTML1.0では推奨されるが、これを加えると、IE6では、互換モードで表示される


加えて、このブログの文字コードは、UTF-8であるため、ウェブ標準上も省略が許される宣言文となり、省略しても構わない。

先にも書いたが、ここまでの変更は、目的のために、必ずしも必要とはされない。

続いて、

<?php</pre>  <p>の直前に</p>  <pre class="brush: xhtml"><meta http-equiv="X-UA-Compatible" content="IE=8 ; IE=9" /></pre>  <p>の1行を追加した。</p>  <p>上記の1行は、HTML5では、正しくない構文になるかもしれないが・・・。</p>  <p>この「meta」タグの追加により、IE8、IE9で参照された場合は、それぞれの最新の標準モードが選択され、「互換モード」ボタンが表示されなくなる。</p>  <p>IE8未満では、「互換モード」ボタンは存在せず、特に明示的に指定しなくとも、「DOCTYPE」の記述に従ってレンダリングモードが決定されるので問題ない。</p>    <p><strong>・追記</strong></p>  <p>最終的には、「DOCTYPE」、「meta」タグの置き換えは止め、下記の1行の追加のみを行った。</p>  <pre class="brush: xhtml"><meta http-equiv="X-UA-Compatible" content="IE=8 ; IE=9" /></pre>  <p>テーマ「Weaver 2.0」は、HTML5で記述されていると思われるが、HTML5未対応のブラウザであっても、表示上、問題は出ないと判断した。</p><br style="clear:both;height:1px;overflow:hidden;"></span><br style="clear:both;height:1px;overflow:hidden;"><h3>These are our most popular posts: </h3><span class="li4"><h4>Trash! - Joomla - Trash!</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>しっかりドキュメントなど読んでないのでsh404SEFもJoomSEFも解決方法があるかも  しれませんが. ... Joomla2.5はJoomla1が2011年7月からから新しく採用さえた6ヶ月の  リリースサイクルに準拠しています。2011年の以前のリリースから始まった。<a target="_blank" rel="nofollow" href="http://trash.jp/j"> read more</a></span><span class="li4"><h4>IEのレンダリングモードをタグで明示的に指定する</h4><span class="hi1"  style="background-position:-px 0px;height:px;width:px;"></span>2011年3月30日 ... ウェブ標準準拠については、IE8で個人的に満足が行くレベルになっていたし、HTML5  やCCS3へ新たに準拠しているが、 ... ユーザーやサイト作成者が、ブラウザモードや  ドキュメントモードを明示的に指定する方法もあるが、正しく、HTMLを ...<a target="_blank" rel="nofollow" href="http://www.near-mint.com/blog/429"> read more</a></span><span class="li4"><h4>MODX :: フロントエンド ドキュメントマネージャ (FDM) 使用記</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>テンプレート変数にも対応しており、どんなアプリケーションにも応用することができます  。 ... (3)メール送信スニペット eForm をベースにしています そのためフォームの作成  方法などは eForm のドキュメントが ....  このときのページタイトルへのリンクにサブ  ディレクトリまでのパスが含まれておらずクリックしても「404 Not Found」になって ...   さらに、modx 標準に準拠したい場合 198行目を修正、赤字部分を追加します。<a target="_blank" rel="nofollow" href="http://forums.modx.com/thread/56376/12501-12525-12531-12488-12456-12531-12489-12489-12461-12517-12513-12531-12488-12510-12493-12540-12472-12515-65288-fdm-65289-20351-29992-35352"> read more</a></span><span class="li4"><h4>Twitter API 仕様書 日本語訳</h4><span class="hi1" style="background-position:-px 0px;height:px;width:px;"></span>トークンベースの認証 OAuth は、今のところベータ版であるが、将来、OAuth 認証を  標準的な認証方法にする予定。 ... REST Twitter の API は可能な限り REST に準拠  しようとしている 引数 API によっては、必須の引数があったり、オプションとして指定   可能 ... 存在しない API を実行しようとしたり、存在しないユーザを引数で指定して API を  実行しようとすると、404 Not Found が返る。 .... しておいて API 絡みの発言がないか  チェックする、といった方法も有効) Twitter を利用したアプリケーションに関する要望・  苦情の送り先 ...<a target="_blank" rel="nofollow" href="http://watcher.moe-nifty.com/memo/docs/twitterAPI.txt"> read more</a></span>  
<div style='clear: both;'></div>
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
投稿者
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://www.blogger.com/profile/05817597748167496660' itemprop='url'/>
<a class='g-profile' href='https://www.blogger.com/profile/05817597748167496660' rel='author' title='author profile'>
<span itemprop='name'>john</span>
</a>
</span>
</span>
<span class='post-timestamp'>
時刻:
<meta content='http://zielonkaj.blogspot.com/2012/05/ie.html' itemprop='url'/>
<a class='timestamp-link' href='http://zielonkaj.blogspot.com/2012/05/ie.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2012-05-04T00:36:00+09:00'>0:36</abbr></a>
</span>
<span class='post-comment-link'>
</span>
<span class='post-icons'>
<span class='item-control blog-admin pid-1432615347'>
<a href='https://www.blogger.com/post-edit.g?blogID=1579633789910398593&postID=5139792792332055698&from=pencil' title='投稿を編集'>
<img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</span>
<div class='post-share-buttons goog-inline-block'>
<a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=1579633789910398593&postID=5139792792332055698&target=email' target='_blank' title='メールで送信'><span class='share-button-link-text'>メールで送信</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=1579633789910398593&postID=5139792792332055698&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=1579633789910398593&postID=5139792792332055698&target=twitter' target='_blank' title='X で共有'><span class='share-button-link-text'>X で共有</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=1579633789910398593&postID=5139792792332055698&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Facebook で共有する'><span class='share-button-link-text'>Facebook で共有する</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=1579633789910398593&postID=5139792792332055698&target=pinterest' target='_blank' title='Pinterest に共有'><span class='share-button-link-text'>Pinterest に共有</span></a>
</div>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>
<span class='post-location'>
</span>
</div>
</div>
</div>
<div class='comments' id='comments'>
<a name='comments'></a>
<h4>0 件のコメント:</h4>
<div id='Blog1_comments-block-wrapper'>
<dl class='avatar-comment-indent' id='comments-block'>
</dl>
</div>
<p class='comment-footer'>
<div class='comment-form'>
<a name='comment-form'></a>
<h4 id='comment-post-message'>コメントを投稿</h4>
<p>
</p>
<a href='https://www.blogger.com/comment/frame/1579633789910398593?po=5139792792332055698&hl=ja' id='comment-editor-src'></a>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe>
<script src='https://www.blogger.com/static/v1/jsbin/2315299244-comment_from_post_iframe.js' type='text/javascript'></script>
<script type='text/javascript'>
      BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html');
    </script>
</div>
</p>
</div>
</div>

        </div></div>
      
</div>
<div class='blog-pager' id='blog-pager'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' href='http://zielonkaj.blogspot.com/2012/05/hr.html' id='Blog1_blog-pager-newer-link' title='次の投稿'>次の投稿</a>
</span>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='http://zielonkaj.blogspot.com/2012/05/lawyer-accountantcpa-stlye-mba.html' id='Blog1_blog-pager-older-link' title='前の投稿'>前の投稿</a>
</span>
<a class='home-link' href='http://zielonkaj.blogspot.com/'>ホーム</a>
</div>
<div class='clear'></div>
<div class='post-feeds'>
<div class='feed-links'>
登録:
<a class='feed-link' href='http://zielonkaj.blogspot.com/feeds/5139792792332055698/comments/default' target='_blank' type='application/atom+xml'>コメントの投稿 (Atom)</a>
</div>
</div>
</div></div>
</div>
</div>
<div class='column-left-outer'>
<div class='column-left-inner'>
<aside>
</aside>
</div>
</div>
<div class='column-right-outer'>
<div class='column-right-inner'>
<aside>
<div class='sidebar section' id='sidebar-right-1'><div class='widget BlogArchive' data-version='1' id='BlogArchive1'>
<h2>ブログ アーカイブ</h2>
<div class='widget-content'>
<div id='ArchiveList'>
<div id='BlogArchive1_ArchiveList'>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy toggle-open'>

        ▼ 
      
</span>
</a>
<a class='post-count-link' href='http://zielonkaj.blogspot.com/2012/'>
2012
</a>
<span class='post-count' dir='ltr'>(25)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='http://zielonkaj.blogspot.com/2012/06/'>
6月
</a>
<span class='post-count' dir='ltr'>(1)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy toggle-open'>

        ▼ 
      
</span>
</a>
<a class='post-count-link' href='http://zielonkaj.blogspot.com/2012/05/'>
5月
</a>
<span class='post-count' dir='ltr'>(11)</span>
<ul class='posts'>
<li><a href='http://zielonkaj.blogspot.com/2012/05/blog-post_31.html'>インタビュー 唐木 英明 氏(日本学術会議 副会長、東京大学 名誉教授)「誤解の恐ろしさ - 安全な...</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/just-npo.html'>摂食障害 | JUST | NPO法人 日本トラウマ・サバイバーズ・ユニオン</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/192834192834-goo.html'>大恐慌前後の失業率(日本1928年~34年推計値とアメリカ1928年~34年)を教えてください。 -...</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/dustyfotocom-gerwrud-activity.html'>DustyFoto.com | Gerwrud | Activity</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/blog-post.html'>主な刊行物 | 全日本トラック協会</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/tsuda-twilog.html'>津田大介(@tsuda) - Twilog</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/it.html'>システム開発プロジェクトの魅力を伝えよう − @IT情報マネジメント</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/reuters.html'>MSCIが銘柄入れ替え、ワールド指数に米ジェンワース・フィナンシャルなど| マネーニュース| 最新経...</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/hr.html'>HRとは - はてなキーワード</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/ie.html'>IEのレンダリングモードをタグで明示的に指定する | モノについてのモノ語り</a></li>
<li><a href='http://zielonkaj.blogspot.com/2012/05/lawyer-accountantcpa-stlye-mba.html'>Lawyer Accountant|CPA Stlye - MBAを目指す米国公認会計士の戯言</a></li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='http://zielonkaj.blogspot.com/2012/04/'>
4月
</a>
<span class='post-count' dir='ltr'>(13)</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class='clear'></div>
</div>
</div><div class='widget Profile' data-version='1' id='Profile1'>
<h2>自己紹介</h2>
<div class='widget-content'>
<dl class='profile-datablock'>
<dt class='profile-data'>
<a class='profile-name-link g-profile' href='https://www.blogger.com/profile/05817597748167496660' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'>
john
</a>
</dt>
</dl>
<a class='profile-link' href='https://www.blogger.com/profile/05817597748167496660' rel='author'>詳細プロフィールを表示</a>
<div class='clear'></div>
</div>
</div></div>
</aside>
</div>
</div>
</div>
<div style='clear: both'></div>
<!-- columns -->
</div>
<!-- main -->
</div>
</div>
<div class='main-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<footer>
<div class='footer-outer'>
<div class='footer-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left footer-fauxborder-left'>
<div class='fauxborder-right footer-fauxborder-right'></div>
<div class='region-inner footer-inner'>
<div class='foot no-items section' id='footer-1'></div>
<table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'>
<tbody>
<tr>
<td class='first columns-cell'>
<div class='foot no-items section' id='footer-2-1'></div>
</td>
<td class='columns-cell'>
<div class='foot no-items section' id='footer-2-2'></div>
</td>
</tr>
</tbody>
</table>
<!-- outside of the include in order to lock Attribution widget -->
<div class='foot section' id='footer-3' name='フッター'><div class='widget Attribution' data-version='1' id='Attribution1'>
<div class='widget-content' style='text-align: center;'>
「シンプル」テーマ. Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>.
</div>
<div class='clear'></div>
</div></div>
</div>
</div>
<div class='footer-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</footer>
<!-- content -->
</div>
</div>
<div class='content-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</div>
<script type='text/javascript'>
    window.setTimeout(function() {
        document.body.className = document.body.className.replace('loading', '');
      }, 10);
  </script>

<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/984859869-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY7-MXXImi00bDtOhICSU126rcPijw:1732311678908';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1579633789910398593','//zielonkaj.blogspot.com/2012/05/ie.html','1579633789910398593');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1579633789910398593', 'title': 'notebook', 'url': 'http://zielonkaj.blogspot.com/2012/05/ie.html', 'canonicalUrl': 'http://zielonkaj.blogspot.com/2012/05/ie.html', 'homepageUrl': 'http://zielonkaj.blogspot.com/', 'searchUrl': 'http://zielonkaj.blogspot.com/search', 'canonicalHomepageUrl': 'http://zielonkaj.blogspot.com/', 'blogspotFaviconUrl': 'http://zielonkaj.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'ja', 'localeUnderscoreDelimited': 'ja', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22http://zielonkaj.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22notebook - RSS\x22 href\x3d\x22http://zielonkaj.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1579633789910398593/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22notebook - Atom\x22 href\x3d\x22http://zielonkaj.blogspot.com/feeds/5139792792332055698/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/d78375fb222d99b3', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'key': 'link', 'shareMessage': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Facebook \u3067\u5171\u6709', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': '\xd7', 'key': 'twitter', 'shareMessage': '\xd7 \u3067\u5171\u6709', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Pinterest \u3067\u5171\u6709', 'target': 'pinterest'}, {'name': '\u30e1\u30fc\u30eb', 'key': 'email', 'shareMessage': '\u30e1\u30fc\u30eb', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27ja\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u7d9a\u304d\u3092\u8aad\u3080', 'pageType': 'item', 'postId': '5139792792332055698', 'postImageThumbnailUrl': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp8zcCN8YtviJ1MLSNWodOQxITyJSrJQsptevCvjGl0PYyMvAaS6kgaz0k6efgnLAQ5W45-fWVMxqZuixdz37Sg4Kqawkw1fDno8wMs2LfzTXwXGvR4oDGo4jU7QQ1Af3YcaGOWwdCHrN0/s72-c/attach0-779429.jpg', 'postImageUrl': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp8zcCN8YtviJ1MLSNWodOQxITyJSrJQsptevCvjGl0PYyMvAaS6kgaz0k6efgnLAQ5W45-fWVMxqZuixdz37Sg4Kqawkw1fDno8wMs2LfzTXwXGvR4oDGo4jU7QQ1Af3YcaGOWwdCHrN0/s320/attach0-779429.jpg', 'pageName': 'IE\u306e\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u30e2\u30fc\u30c9\u3092\u30bf\u30b0\u3067\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b | \u30e2\u30ce\u306b\u3064\u3044\u3066\u306e\u30e2\u30ce\u8a9e\u308a', 'pageTitle': 'notebook: IE\u306e\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u30e2\u30fc\u30c9\u3092\u30bf\u30b0\u3067\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b | \u30e2\u30ce\u306b\u3064\u3044\u3066\u306e\u30e2\u30ce\u8a9e\u308a'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u7de8\u96c6', 'linkCopiedToClipboard': '\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\u3002', 'ok': 'OK', 'postLink': '\u6295\u7a3f\u306e\u30ea\u30f3\u30af'}}, {'name': 'template', 'data': {'name': 'Simple', 'localizedName': '\u30b7\u30f3\u30d7\u30eb', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'pale', 'variantId': 'pale'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'IE\u306e\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u30e2\u30fc\u30c9\u3092\u30bf\u30b0\u3067\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b | \u30e2\u30ce\u306b\u3064\u3044\u3066\u306e\u30e2\u30ce\u8a9e\u308a', 'description': '    \t\t\t    IE\u306e\u30ec\u30f3\u30c0\u30ea\u30f3\u30b0\u30e2\u30fc\u30c9\u3092\u30bf\u30b0\u3067\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b \u5730\u9707\u306e\u5f71\u97ff\u3067\u65e5\u672c\u8a9e\u7248\u306f\u3001\u30ea\u30ea\u30fc\u30b9\u304c\u5ef6\u671f\u306b\u306a\u3063\u305f\u304c\u3001\u300cInternet Explorer 9\u300d\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u3002   \u79c1\u3082\u82f1\u8a9e\u7248\u3092\u30c0\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u3044\u308b\u304c\u3001\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u9762\u3067\u5927\u304d\u306a\u6539\u5584\u304c\u898b\u3089\u308c\u308b\u3002   \u30a6\u30a7\u30d6\u6a19\u6e96\u6e96...', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp8zcCN8YtviJ1MLSNWodOQxITyJSrJQsptevCvjGl0PYyMvAaS6kgaz0k6efgnLAQ5W45-fWVMxqZuixdz37Sg4Kqawkw1fDno8wMs2LfzTXwXGvR4oDGo4jU7QQ1Af3YcaGOWwdCHrN0/s320/attach0-779429.jpg', 'url': 'http://zielonkaj.blogspot.com/2012/05/ie.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 5139792792332055698}}]);
_WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2484140117-lbx__ja.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar-right-1', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': '\u8aad\u307f\u8fbc\u307f\u4e2d\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar-right-1', document.getElementById('Profile1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull'));
</script>
</body>
</html>