2008-02-09から1日間の記事一覧

window.getSelection と document.getSelection

window.getSelection()とdocument.getSelection()で返ってくる値が違うって事で調べてみた。 <html> <head> <title>getSelection Test</title> <script type="text/javascript"> function reportSelection(){ var sels = { normal: getSelection(), win: window.getSelection(), doc: document.getSelection() }; var di</head></html>…

安全にSelectionオブジェクトを得る(XPCNativeWrapperの使用)

window.getSelection と document.getSelection - hogehoge @teramakoの続き。Firefox内部からブラウザの選択範囲を得る場合だが、ブラウザ内のコンテンツは本来の関数が上書きされている可能性があるためは安全でない。それを解決するためにXPCNativeWrappe…