Internet ExplorerのどのバージョンからどのHTML/CSS/JSに対応しているかの一覧

Updated / Published

2014年8月7日にMicrosoftよりIEのサポートバージョンは、延長サポート中の各Winodows OSにおいて利用できる最新バージョンに限定するというサポートポリシーを変更する重大な発表が行われました。この変更に伴い、IE7,IE8およびIE10については2016年1月12日をもってサポートが終了することになりました。なお、Windows VistaにおいてはIE9が最新バージョンとなるため、Windows VistaのIE9はサポート終了日である2017年4月11日まで残ることになります。

Internet Explorer 6 Countdownによると、2014年8月時点での日本におけるInternet Explorer 6のシェアは1%未満にまで下がりました。しかし、この先もInternet Explorerのバージョンを気にしなければならない状態は以前続きます。

そこで、Internet ExplorerのどのバージョンからどのHTML/CSS/JSに対応しているかを理解しておくことで、ある程度の対策を立てることができます。それをまとめたリストを作成しました。ここに掲載している以外のもので、もしご存知のものや訂正等ありましたら、当記事のコメント欄にて是非ご教示ください。追記・修正させていただきます。

このページのもっとも単純な使い方としては、対応を調べたいキーワードをページ内検索で用いてください。ページ内の文字検索はWindowsではCtrl+F、Macではcommand+Fで表れた検索ボックスにキーワードを入力して行います。

Internet Explorerのバージョン別サポート終了日

IE11のサポート終了日を予定としている部分については、Windows 7・Windows 8・Windows 8.1対応のIE11の後継バージョンが出た場合に、新たなサポート終了日が発表されると考えられます。

OSIEバージョンサポート終了日
Windows XPIE62014年4月8日
IE7
IE8
Windows VistaIE72016年1月12日
IE8
IE92017年4月11日
Windows 7IE82016年1月12日
IE9
IE10
IE112020年1月14日(予定)
Windows 8IE102016年1月12日
IE112023年1月10日(予定)
Windows 8.1IE112023年1月10日(予定)

Internet Explorer 7から対応したHTML/CSS/JS

Internet Explorer 7はMicrosoft社から2006年10月18日(日本語版は11月2日)にリリースされたウェブブラウザ。

HTML
  • 透過PNGフォーマット
  • abbr要素
CSS
  • 子供セレクタ(親要素 > 子要素 )
  • 隣接セレクタ(要素1 + 要素2)
  • 間接セレクタ(要素1 ~ 要素2)
  • 属性セレクタ([属性名], [属性名="属性値"], [属性名~="属性値"], [属性名|="属性値"])
  • a要素以外をセレクタにした:hover擬似クラス, :active擬似クラス
  • :first-child擬似クラス
  • max-widthプロパティ, max-heightプロパティ
  • min-widthプロパティ, min-heightプロパティ
  • positionプロパティの fixed の値
  • border-colorプロパティの transparent の値
JS
  • XMLHttpRequestオブジェクト

Internet Explorer 8から対応したHTML/CSS/JS

Internet Explorer 8はMicrosoft社から2009年3月20日にリリースされたウェブブラウザ。

HTML
  • q要素の引用符
  • object要素での画像表示
  • onofflineイベントハンドラ
  • WAI-ARIA
  • ブロードバンド経由のHTTP最大同時接続数が 6 に増加
CSS
  • dataスキーム(dataURI)
  • :first擬似クラス
  • :focus擬似クラス
  • :lang()擬似クラス
  • :before擬似要素, :after擬似要素
  • contentプロパティ, counter-incrementプロパティ, counter-resetプロパティ, quotesプロパティ
  • border-spacingプロパティ
  • caption-sideプロパティ
  • empty-cellsプロパティ
  • border-styleプロパティのhiddenの値
  • displayプロパティのtable, inline-table, table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column, table-cell, table-captionの値
  • list-style-typeプロパティのdecimal-leading-zero,lower-latin, upper-latin, lower-greek, armenian, georgianの値
  • outlineプロパティ, outline-colorプロパティ, outline-styleプロパティ, outline-widthプロパティ
  • visibilityプロパティのcollapseの値
  • white-spaceプロパティのpre-wrap, pre-lineの値
  • @pageルール
  • :left擬似クラス, :right擬似クラス
  • page-break-insideプロパティ
  • orphansプロパティ
  • windowsプロパティ
  • 次のプロパティがCSS2.1に準拠:font-weight, word-spacing, border-collapse, border-style, empty-cells, float, margin, bottom, clip, display, left, right, top, z-index
  • box-sizingプロパティ
  • ruby-alignプロパティ, ruby-positionプロパティ, ruby-overhangプロパティ
JS
  • postMessage
  • XDomainRequest
  • JSON
  • Console(console.log()など)
  • Web Storage:localStorage, sessionStorage
  • HashChangeイベント:onhashchangeなど
  • querySelector, querySelectorAll(CSS2セレクタのみ)
  • maxConnectionsPerServerプロパティ
  • XMLHttpRequestオブジェクトの強化:timeoutプロパティ, ontimeoutイベント

参考リソース

Internet Explorer 9から対応したHTML/CSS/JS

Internet Explorer 9はMicrosoft社から2011年4月26日にリリースされたウェブブラウザ。

HTML
  • audio要素(autoplay属性, controls属性, loop属性, mediagroup属性, muted属性, preload属性, src属性)
  • video要素(autoplay属性, controls属性, crossorigin属性, height属性, loop属性, mediagroup属性, muted属性, poster 属性, preload属性, src属性, width属性)
  • source要素(media属性, src属性, type属性)
  • canvas要素(height属性, width属性)
  • section要素
  • nav要素
  • article要素
  • aside要素
  • hgroup要素
  • header要素
  • footer要素
  • figure要素
  • figcaption要素
  • mark要素
  • ジェネリック要素(HTML5仕様で定義されていない要素でもスタイル適用可能に、たとえばIE9はmain要素をサポートしていないがスタイル適用は可能である)
  • SVG(インラインSVG,img要素)
  • oncanplayイベントハンドラ, oncanplaythroughイベントハンドラ, ondurationchangeイベントハンドラ, onemptiedイベントハンドラ, onendedイベントハンドラ, onloadeddataイベントハンドラ, onloadedmetadataイベントハンドラ, onloadstartイベントハンドラ, onpauseイベントハンドラ, onplayイベントハンドラ, onplayingイベントハンドラ, onprogressイベントハンドラ, onratechangeイベントハンドラ, onseekedイベントハンドラ, onseekingイベントハンドラ, onstalledイベントハンドラ, onsuspendイベントハンドラ, ontimeupdateイベントハンドラ, onvolumechangeイベントハンドラ, onwaiting イベントハンドラ
  • サブピクセルフォント
  • ハードウェアアクセラレーション(GPU)
  • MPEG-4, H.264 videoフォーマット
  • JPEG XRフォーマット
  • application/xhtml+xml, application/xml, text/xmlのMIMEのXHTML文書
CSS
  • 単位 rem
  • 単位 ch
  • 単位 vh, vw
  • 単位 vmin
  • 単位 dpi, dpcm
  • rgba(), hsl(), hsla()の色指定
  • calc()ファンクション
  • :root擬似クラス
  • :nth-child()擬似クラス, :nth-last-child()擬似クラス, :nth-of-type()擬似クラス, :nth-last-of-type()擬似クラス
  • :last-child擬似クラス
  • :first-of-type擬似クラス, :last-of-type擬似クラス
  • :only-child擬似クラス, :only-of-type擬似クラス
  • :empty擬似クラス
  • :target擬似クラス
  • :not()擬似クラス
  • :enabled擬似クラス, :disabled擬似クラス, :checked擬似クラス
  • :indeterminate擬似クラス
  • ::selection擬似要素
  • 次の擬似要素のCSS3記法に対応:::first-line擬似要素, ::first-letter擬似要素, ::before擬似要素, ::after擬似要素
  • @mediaルール(メディアクエリ)
  • @font-faceルール
  • TrueTypeフォント, OpenTypeフォント
  • Web Open Fontフォーマット
  • SVG(背景)
  • opacityプロパティ
  • border-radiusプロパティ
  • box-shadowプロパティ
  • background-clipプロパティ
  • background-sizeプロパティ
  • background-originプロパティ
  • backgroundの複数指定
  • -ms-transformプロパティ, -ms-transform-originプロパティ(2D)
  • pointer-eventsプロパティ
JS
  • Geolocation API(geolocationオブジェクト, window.navigator.geolocationプロパティなど)
  • Navigation Timing(performance.timing.navigationStartなど)
  • ECMAscript 5 (ES5) 対応に伴う次のメソッド、関数をサポート
    • Array:indexOf, lastIndexOf, forEach, every, some, map, filter, reduce, reduceRight
    • Object:Object.defineProperty, Object.defineProperties, Object.create, Object.getPrototypeOf, Object.getOwnPropertyDescriptor, Object.getOwnPropertyDescriptor, Object.keys, Object.seal, Object.freeze, Object.isSealed, Object.isFrozen, Object.preventExtensions, Object.isExtensible
    • String.trim
    • toISOString(Dateクラス)
    • Date.parse
    • Date.now
    • Array.isArray
    • bind(Functionクラス)
  • DOMトラバーサル、要素トラバーサル:document.createNodeIterator, ParentNode.firstElementChild, ChildNode.nextElementSibling
  • getElementsByClassName()メソッド
  • innerWidthプロパティ, innerHeightプロパティ
  • ownerNodeプロパティ
  • pageXOffsetプロパティ, pageYOffsetプロパティ
  • textContentプロパティ
  • msDoNotTrackプロパティ
  • メディア関連(audio, video):
    • canPlayType()メソッド, end()メソッド, start()メソッド, load()メソッド, pause()メソッド, play()メソッド,
    • canplayイベント, canplaythroughイベント, durationchangeイベント, emptiedイベント, endedイベント, loadeddataイベント, loadedmetadataイベント, loadstartイベント, pauseイベント, playイベント, playingイベント, progressイベント, ratechangeイベント, seekedイベント, seekingイベント, stalledイベント, suspendイベント, timeupdateイベント, volumechangeイベント, waitingイベント
    • autobufferプロパティ, autoplayプロパティ, bufferedプロパティ, controlsプロパティ, currentSrcプロパティ, currentTimeプロパティ, defaultPlaybackRateプロパティ, durationプロパティ, endedプロパティ, errorプロパティ, heightプロパティ, loopプロパティ, mediaプロパティ, mutedプロパティ, networkStateプロパティ, pausedプロパティ, playbackRateプロパティ, playedプロパティ, posterプロパティ, preloadプロパティ, seekableプロパティ, seekingプロパティ, srcプロパティ, typeプロパティ, videoHeightプロパティ, videoWidthプロパティ, volumeプロパティ, widthプロパティ
  • DOMContentLoadedイベント
  • addEventListener()メソッド, removeEventListener()メソッド, document.createEvent()メソッド, dispatchEvent()メソッド
  • indeterminateプロパティ(input type="checkbox"の場合のtrue, falseの真偽値)
  • timeStampプロパティ
  • buttonプロパティ, buttonsプロパティ
  • targetプロパティ
  • matches(Selectors API Level 2)
  • querySelectorAllの強化(CSS3セレクタ)

参考リソース

Internet Explorer 10から対応したHTML/CSS/JS

Internet Explorer 10はMicrosoft社からWindows8(2012年10月26日リリース)にプリインストールされたウェブブラウザとして登場、2013年2月26日よりWindows 7 / Windows Server 2008 R2向けにも提供された。

HTML
  • datalist要素
  • progress要素(value属性, max属性)
  • track要素(default属性, kind属性, label属性, src属性, srclang属性)
  • draggable属性
  • spellcheck属性
  • inframe要素のsandbox属性
  • input要素のplaceholder属性(textarea要素は未サポート)
  • input要素,textarea要素のautofocus属性
  • input要素のpattern属性
  • input要素のstep属性
  • input要素, textare要素のform属性
  • input要素, textare要素のrequired属性
  • input要素のtype属性のemail, number, range, search, tel ,urlの値
  • input要素のtype="file"の場合のmultiple属性
  • textarea要素のmaxlength属性
  • type="submit"の場合のformaction属性, formenctype属性, formmethod属性, formnovalidate属性, formtarget属性
  • フォームコントロールのlist属性, datalist属性
  • script要素のasync属性
  • onchangeイベントハンドラ, oncuechangeイベントハンドラ, onMSVideoFormatChangedイベントハンドラ, onMSVideoFrameStepCompletedイベントハンドラ, onMSVideoOptimalLayoutChangedイベントハンドラ
  • onmspointerdownイベントハンドラ, onmspointermoveイベントハンドラ, onmspointerupイベントハンドラ, onmspointeroverイベントハンドラ, onmspointeroutイベントハンドラ, onmspointerhoverイベントハンドラ, onmspointerleaveイベントハンドラ, onmspointercancelイベントハンドラ, onmsgotpointercaptureイベントハンドラ, onmslostpointercaptureイベントハンドラ
  • onmsgesturetapイベントハンドラ, onmsgestureholdイベントハンドラ, onmsgesturestartイベントハンドラ, onmsgesturechangeイベントハンドラ, onmsgestureendイベントハンドラ, onmsinertiastartイベントハンドラ
  • aria-haspopup属性のタッチ対応 ただし、Windows7版は除く
  • リンクタップ時の強調表示の無効(<meta name="msapplication-tap-highlight" content="no" /> ただし、Windows7版は除く
  • Content Security Policy(X-Content-Security-PolicyをHTTPヘッダに指定)
CSS
  • animationプロパティ, animation-nameプロパティ, animation-durationプロパティ, animation-timing-functionプロパティ, animation-delayプロパティ, animation-iteration-countプロパティ, animation-directionプロパティ, animation-fill-modeプロパティ
  • backface-visibilityプロパティ
  • columnsプロパティ, column-widthプロパティ, column-countプロパティ, column-gapプロパティ, column-ruleプロパティ, column-rule-widthプロパティ, column-rule-styleプロパティ, column-rule-colorプロパティ, column-spanプロパティ, column-fillプロパティ
  • -ms-grid-columnsプロパティ, -ms-grid-rowsプロパティ, -ms-grid-columnプロパティ, -ms-grid-rowプロパティ, -ms-grid-column-alignプロパティ, -ms-grid-row-alignプロパティ, -ms-grid-column-spanプロパティ, -ms-grid-row-spanプロパティ
  • displayプロパティの-ms-grid, -ms-inline-gridの値
  • font-feature-settingsプロパティ
  • hyphensプロパティ
  • linear-gradient()ファンクション, radial-gradient()ファンクション
  • perspectiveプロパティ, perspective-originプロパティ
  • transformプロパティ, transform-origin(2D)プロパティのベンダー識別子なしでサポート
  • transformプロパティ, transform-origin(3D)プロパティ
  • transitionプロパティ, transition-delayプロパティ, transition-durationプロパティ, transition-propertyプロパティ, transition-timing-functionプロパティ
  • text-shadowプロパティ
  • SVGフィルタ
  • SVG素片識別子
  • :valid擬似クラス, :invalid擬似クラス, :optional擬似クラス, :required擬似クラス
  • -ms-user-selectプロパティ
  • @viewportルール:@-ms-viewport
  • スクロール/ズームのプロパティ ただし、Windows7版は除く
    • -ms-scroll-snap-points-xプロパティ, -ms-scroll-snap-points-yプロパティ, -ms-scroll-snap-typeプロパティ, -ms-scroll-snap-xプロパティ, -ms-scroll-snap-yプロパティ
    • -ms-content-zoom-chainingプロパティ, msContentZoomFactorプロパティ, -ms-content-zoomingプロパティ, -ms-content-zoom-limitプロパティ, -ms-content-zoom-limit-maxプロパティ, -ms-content-zoom-limit-minプロパティ, -ms-content-zoom-snapプロパティ, -ms-content-zoom-snap-pointsプロパティ, -ms-content-zoom-snap-typeプロパティ, -ms-scroll-chainingプロパティ, -ms-scroll-railsプロパティ
    • -ms-overflow-styleプロパティ, -ms-scroll-limitプロパティ, -ms-scroll-limitXMaxプロパティ, -ms-scroll-limitXMinプロパティ, -ms-scroll-limitYMaxプロパティ, -ms-scroll-limitYMinプロパティ
    • -ms-scroll-translationプロパティ
JS
  • ECMAScript 5 Strictモード(use strict)
  • Web Workers
  • WebSockets(Standard - RFC 6455 のサポート)
  • Offline Web Applications
  • HTML5 History:history.pushState()メソッド, history.replaceState()メソッド, popstateイベント
  • Indexed Database API
  • classListプロパティ(DOMTokenList )
  • dataTransferオブジェクト(Drag and Drop)
  • Typed Arrays(ArrayBuffer, DataView)
  • window.matchMedia
  • File API(BlobBuilderにmsのベンダー識別子要)
  • window.requestAnimationFrame, window.cancelAnimationFrame
  • Page Visibility API:document.hiddenプロパティ, document.visibilityStateプロパティ, visibilitychangeイベント
  • setImmediate()メソッド(setTimeout を setImmediate に置き換えることができる)
  • MessageChannel
  • createContextualFragment()メソッド
  • createObjectURL()メソッド
  • draggableプロパティ
  • MSManipulationEventオブジェクト
  • window.navigator.msLaunchUri()メソッド
  • msContentZoomFactorプロパティ
  • メディア関連(audio, video, track):
    • changeイベント, onMSVideoFormatChangedイベント, onMSVideoFrameStepCompletedイベント, onMSVideoOptimalLayoutChangedイベント, cuechangeイベント
    • TextTrackオブジェクト, TextTrackListオブジェクト, TextTrackCueオブジェクト, TextTrackCue.getCueAsHTML()メソッド, TextTrackCueListオブジェクト, TextTrackCueList.getCueById()メソッド, AudioTrackオブジェクト, AudioTrackListオブジェクト, AudioTrackList.getTrackById()メソッド, item()メソッド, msClearEffects()メソッド, msFrameStep()メソッド, msInsertAudioEffect()メソッド, msInsertVideoEffect()メソッド, msSetMediaProtectionManager()メソッド, msSetVideoRectangle()メソッド
    • activeCuesプロパティ, audioTracksプロパティ, cuesプロパティ, defaultプロパティ, enabledプロパティ, endTimeプロパティ, kindプロパティ, labelプロパティ, languageプロパティ, modeプロパティ, msAudioCategoryプロパティ, msAudioDeviceTypeプロパティ, msExtendedCodeプロパティ, msHorizontalMirrorプロパティ, msIsLayoutOptimalForPlaybackプロパティ, msIsStereo3Dプロパティ, msPlayToDisabledプロパティ, msPlayToPreferredSourceUriプロパティ, msPlayToPrimaryプロパティ, msPlayToSourceプロパティ, msRealTimeプロパティ, msStereo3DPackingModeプロパティ, msStereo3DRenderModeプロパティ, msZoomプロパティ, pauseOnExitプロパティ, readyStateプロパティ(TextTrack), srclangプロパティ, startTimeプロパティ, textプロパティ, textTracksプロパティ, trackプロパティ
  • ポインターイベント:MSPointerDownイベント, MSPointerMoveイベント, MSPointerUpイベント, MSPointerOverイベント, MSPointerOutイベント, MSPointerHoverイベント, MSPointerLeaveイベント, MSPointerCancelイベント, MSGotPointerCaptureイベント, MSLostPointerCaptureイベント, getCurrentPoint()メソッド, getIntermediatePoints()メソッド, initPointerEvent()メソッド, msReleasePointerCapture()メソッド, msSetPointerCapture()メソッド, currentPointプロパティ, intermediatePointsプロパティ, hwTimestampプロパティ, isPrimaryプロパティ, msMaxTouchPointsプロパティ, msManipulationViewsEnabledプロパティ, msPointerEnabledプロパティ, msTouchActionプロパティ, pointerTypeプロパティ, pointerIdプロパティ, pressureプロパティ, tiltXプロパティ, tiltYプロパティ, heightプロパティ, widthプロパティ
  • ジェスチャーイベント:MSGestureオブジェクト, MSGesture.addPointer()メソッド, MSGesture.stop()メソッド, MSGestureEventオブジェクト, MSGestureTapイベント, MSGestureHoldイベント, MSGestureStartイベント, MSGestureChangeイベント, MSGestureEndイベント, MSInertiaStartイベント, rotationプロパティ, scaleプロパティ, targetプロパティ
  • XMLHttpRequestの強化(responseTypeプロパティ, withCredentialsプロパティ, XMLHttpRequestレベル2のイベント:loadstart, progress, abort, error, load, timeout, loadend)

参考リソース

Internet Explorer 11から対応したHTML/CSS/JS

Internet Explorer 11はMicrosoft社からWindows8.1(2013年10月18日リリース)にプリインストールされたウェブブラウザとして登場、2013年11月7日よりWindows 7 / Windows Server 2008 R2向けにも提供された。

HTML
  • 高解像度 ただし、Windows7版は除く
  • SPDY/3(HTTPリクエストのTCP接続共有) ただし、Windows7版は除く
  • title属性の強化(ツールチップをキーボードとタッチ操作から表示)
  • iframe要素のallowfullscreen属性
  • audio要素, img要素, link要素, script要素, svg要素, video要素のlazyload属性
  • link要素のrel属性のprerender, prefetch, dns-prefetchの値
  • ondevicemotionイベントハンドラ ただし、Windows7版は除く
  • onmsorientationchangeイベントハンドラ ただし、Windows7版は除く
  • onabortイベントハンドラ, onaddsourcebufferイベントハンドラ, onerrorイベントハンドラ, onmsneedkeyイベントハンドラ, onremovesourcebufferイベントハンドラ, onsourcecloseイベントハンドラ, onsourceendedイベントハンドラ, onsourceopenイベントハンドラ, onupdateイベントハンドラ, onupdateendイベントハンドラ, onupdatestartイベントハンドラ ただし、Windows7版は除く
  • onaddtrackイベントハンドラ, onremovetrackイベントハンドラ
  • onpointerenterイベントハンドラ, onpointerdownイベントハンドラ, onpointerupイベントハンドラ, onpointercancelイベントハンドラ, onpointermoveイベントハンドラ, onpointeroverイベントハンドラ, onpointeroutイベントハンドラ, onpointerleaveイベントハンドラ, ongotpointercaptureイベントハンドラ, onlostpointercaptureイベントハンドラ(ベンダー識別子なしでサポート)
  • datalist要素の強化(タッチ対応)
  • Simple Delivery Profile (SDP) (ビデオのキャプション配置)
  • 電話番号の形式の認識(電話番号をリンクに自動的に置き換える) ただし、Windows7版は除く
CSS
  • :-ms-fullscreen擬似クラス
  • ::-ms-backdrop擬似要素
  • touch-actionプロパティ(ベンダー識別子なしでサポート)
  • -ms-text-combine-horizontalプロパティ
  • border-imageプロパティ, border-image-sourceプロパティ, border-image-sliceプロパティ, border-image-widthプロパティ, border-image-outsetプロパティ, border-image-repeatプロパティ
  • flexプロパティ, align-contentプロパティ, align-itemsプロパティ, align-selfプロパティ, flexプロパティ, flex-basisプロパティ, flex-directionプロパティ, flex-flowプロパティ, flex-growプロパティ, flex-shrinkプロパティ, flex-wrapプロパティ, justify-contentプロパティ, orderプロパティ
  • displayプロパティのflex, inline-flexの値
  • positionプロパティの-ms-device-fixedの値
JS
  • letステートメント, constステートメント
  • WebGL
  • 変更オブザーバー:MutationObserverオブジェクト, MutationRecordオブジェクト
  • Full Screen API:msRequestFullscreen()メソッド, msExitFullscreen()メソッド, MSFullscreenChangeイベント, MSFullscreenErrorイベント, msFullscreenEnabledプロパティ, msFullscreenElementプロパティ
  • Web Cryptography API(Web 暗号化API)
  • デバイスの向き ただし、Windows7版は除く:DeviceOrientationEventオブジェクト, DeviceMotionEventオブジェクト, deviceorientationイベント, devicemotionイベント
  • 画面の向き ただし、Windows7版は除く:msOrientationプロパティ, MSOrientationChangeイベント, msLockOrientation()メソッド, msUnlockOrientation()メソッド
  • window.devicePixelRatioプロパティ ただし、Windows7版は除く
  • 国際化API:Intl.DateTimeFormatオブジェクト, Intl.NumberFormatオブジェクト, Intl.Collatorオブジェクト
  • Setオブジェクト
  • Mapオブジェクト
  • WeakMapオブジェクト
  • __proto__プロパティ
  • pagehideイベント, pageshowイベント
  • Media Source Extensions (MSE) ただし、Windows7版は除く
    • MediaSource.addSourceBuffer()メソッド, MediaSource.endOfStream()メソッド, MediaSource.removeSourceBuffer()メソッド, SourceBufferオブジェクト, SourceBuffer.abort()メソッド, SourceBuffer.appendBuffer()メソッド, SourceBuffer.appendStream()メソッド, SourceBuffer.remove()メソッド, SourceBufferListオブジェクト, endOfStream()メソッド
    • abortイベント, addsourcebufferイベント, errorイベント, removesourcebufferイベント, sourcecloseイベント, sourceendedイベント, sourceopenイベント, updateイベント, updateendイベント, updatestartイベント
    • activeSourceBuffersプロパティ, appendWindowEndプロパティ, appendWindowStartプロパティ, durationプロパティ(MediaSource), readyStateプロパティ(MediaSource), sourceBufferプロパティ, sourceBuffersプロパティ, timestampOffsetプロパティ, updatingプロパティ
  • Encrypted Media Extensions (EME) ただし、Windows7版は除く
    • MSMediaKeysオブジェクト, MSMediaKeys.createSession()メソッド, MSMediaKeySessionオブジェクト, MSMediaKeySession.update()メソッド, MSMediaKeySession.close()メソッド, MSMediaKeyErrorオブジェクト, MSMediaKeyMessageEventオブジェクト, MSMediaKeyErrorオブジェクト, MSMediaKeyMessageEventオブジェクト, MSMediaKeyNeededEventオブジェクト
    • mskeyaddedイベント, mskeyerrorイベント, mskeymessageイベント, msneedkeyイベント
    • codeプロパティ(MSMediaKeySession), destinationURLプロパティ, errorプロパティ(MSMediaKeySession), keySystemプロパティ, initDataプロパティ, messageプロパティ, msKeysプロパティ, msKeySystemプロパティ, sessionIdプロパティ, systemCodeプロパティ,
  • プライバシー追跡の例外:window.navigator.confirmSiteSpecificTrackingException()メソッド, window.navigator.storeSiteSpecificTrackingException()メソッド, window.navigator.removeSiteSpecificTrackingException()メソッド, window.navigator.confirmWebWideTrackingException()メソッド, window.navigator.storeWebWideTrackingException()メソッド, window.navigator.removeWebWideTrackingException()メソッド
  • VideoPlaybackQualityオブジェクト, creationTimeプロパティ, droppedVideoFramesプロパティ, totalFrameDelayプロパティ, totalVideoFramesプロパティ ただし、Windows7版は除く
  • msIsBoxedプロパティ ただし、Windows7版は除く
  • TextTrack.addCue()メソッド, TextTrack.removeCue()メソッド, addtrackイベント, removetrackイベント, addTextTrack()メソッド, MediaSourceオブジェクト, isTypeSupported()メソッド(MediaSource, MSMediaKeys), msSetMediaKeys()メソッド, getVideoPlaybackQuality()メソッド
  • msZoomTo()メソッド ただし、Windows7版は除く
  • Drag and Dropの強化(タッチ対応) ただし、Windows7版は除く
  • Canvasの強化:msImageSmoothingEnabledプロパティ, msFillRuleプロパティ, setLineDash()メソッド, getLineDash()メソッド, lineDashOffsetプロパティ
  • Pointer Eventsの強化(ベンダー識別子なしでサポート):PointerEventオブジェクト, pointerenterイベント, pointerdownイベント, pointerupイベント, pointercancelイベント, pointermoveイベント, pointeroverイベント, pointeroutイベント, pointerleaveイベント, gotpointercaptureイベント, lostpointercaptureイベント, releasePointerCapture()メソッド, setPointerCapture()メソッド, touchActionプロパティ
  • XMLHttpRequestの強化(キャッシュコントロール追加:msCachingプロパティ, msCachingEnabled()メソッド)

参考リソース