タグ

ブックマーク / developer.mozilla.org (18)

  • Mozilla L10n Style Guide - Mozilla | MDN

  • ヘッドレスモード - Mozilla | MDN

    Firefox 57以降、-screenshotフラグを使用してウェブサイトのスクリーンショットを撮ることができます。基的な使い方は: /path/to/firefox -headless -screenshot https://developer.mozilla.com これにより、screenshot.pngというファイル名で800pxのビューポート幅を持つhttps://developer.mozilla.comの全画面スクリーンショットが作成され、アクティブなディレクトリに保存されます。 暗黙的に -screenshot を使用している場合、-headlessを省略することができます。 /path/to/firefox -screenshot https://developer.mozilla.com 上記のデフォルト値を上書きするために、次のフラグ/機能を使用できます。 -sc

    ヘッドレスモード - Mozilla | MDN
  • SharedArrayBuffer - JavaScript | MDN

    SharedArrayBuffer オブジェクトは、一般的な、生のバイナリーデータバッファーを表すために使用されます。ArrayBuffer オブジェクトと似ていますが、こちらは共有メモリー上にビューを生成するために使用されます。SharedArrayBuffer は移譲可能オブジェクトではありません。この点では ArrayBuffer が移譲可能であるのとは異なります。 SharedArrayBuffer オブジェクトを使用して、クラスター内のあるエージェントから別のエージェント (エージェントとは、ウェブページのメインプログラムまたはそのウェブワーカーのひとつ) へ、SharedArrayBuffer オブジェクトを使用してメモリーを共有するために、postMessage と構造化複製を使用します。 構造化複製アルゴリズムは SharedArrayBuffer と、SharedArra

    SharedArrayBuffer - JavaScript | MDN
  • Document: execCommand() メソッド - Web API | MDN

    非推奨: この機能は非推奨になりました。まだ対応しているブラウザーがあるかもしれませんが、すでに関連するウェブ標準から削除されているか、削除の手続き中であるか、互換性のためだけに残されている可能性があります。使用を避け、できれば既存のコードは更新してください。このページの下部にある互換性一覧表を見て判断してください。この機能は突然動作しなくなる可能性があることに注意してください。 execCommand メソッドは、複数の異なるコマンドを実装しています。クリップボードへのアクセスを提供するものもあれば、フォーム入力フィールドや contenteditable の要素、文書全体(デザインモードに切り替えた場合)を編集するためのものもあります。 クリップボードにアクセスするには、execCommand() よりも新しいクリップボード API が推奨されます。しかし、編集コマンドを置き換えるもの

    Document: execCommand() メソッド - Web API | MDN
  • new.target - JavaScript | MDN

    new.target is guaranteed to be a constructable function value or undefined. In class constructors, it refers to the class that new was called upon, which may be a subclass of the current constructor, because subclasses transitively call the superclass's constructor through super(). In ordinary functions, if the function is constructed directly with new, new.target refers to the function itself. If

    new.target - JavaScript | MDN
    Kureduki_Maari
    Kureduki_Maari 2015/12/30
    .。oO(new.targetはsuper()より前に呼べるのでこれが使へれば全部解決なのですけれども。)
  • dispatchEvent example - MDC Docs

    This article demonstrates how to create and dispatch DOM events. Such events are commonly called synthetic events, as opposed to the events fired by the browser itself.

    dispatchEvent example - MDC Docs
    Kureduki_Maari
    Kureduki_Maari 2015/12/29
    .。oO(en-USとは) Creating and triggering events - Web developer guide | MDN
  • Classes - JavaScript | MDN

    // Declaration class Rectangle { constructor(height, width) { this.height = height; this.width = width; } } // Expression; the class is anonymous but assigned to a variable const Rectangle = class { constructor(height, width) { this.height = height; this.width = width; } }; // Expression; the class has its own name const Rectangle = class Rectangle2 { constructor(height, width) { this.height = hei

    Classes - JavaScript | MDN
    Kureduki_Maari
    Kureduki_Maari 2015/10/06
    The bodies of class declarations and class expressions are executed in strict mode.
  • scroll-snap-type - CSS: Cascading Style Sheets | MDN

    CSS Tutorials CSS basics CSS first steps CSS first steps overview What is CSS? Getting started with CSS How CSS is structured How CSS works Assessment: Styling a biography page CSS building blocks CSS building blocks overview CSS selectors Type, class, and ID selectors Attribute selectors Pseudo-classes and pseudo-elements Combinators Cascade, specificity, and inheritance Cascade layers The box mo

    scroll-snap-type - CSS: Cascading Style Sheets | MDN
  • X-DNS-Prefetch-Control - HTTP | MDN

    HTTP ガイド リソースと URI ウェブ上のリソースの識別 データ URL MIME タイプ入門 よくある MIME タイプ www 付きと www なしの URL の選択 HTTP ガイド HTTP の基 HTTP の概要 HTTP の進化 HTTP メッセージ 典型的な HTTP セッション HTTP/1.x のコネクション管理 プロトコルのアップグレードの仕組み HTTP セキュリティ Content Security Policy (CSP) HTTP Strict Transport Security (HSTS) X-Content-Type-Options X-Frame-Options X-XSS-Protection Mozilla web security guidelines Mozilla Observatory HTTP アクセス制御 (CORS) HTTP

    X-DNS-Prefetch-Control - HTTP | MDN
    Kureduki_Maari
    Kureduki_Maari 2015/05/17
    Link prefetching FAQ | MDN https://t.co/QnwL47KE5u DNS プリフェッチの制御 | MDN
  • FileReader - Web API | MDN

    FileReader オブジェクトを使用すると、ウェブアプリケーションは、ユーザーのコンピューターに保存されているファイル(または生のデータバッファー)の内容を非同期に読み取ることができます。File または Blob オブジェクトを使用して、読み込むファイルまたはデータを指定します。 File オブジェクトは、<input> 要素を使用してファイルを選択した結果として返される FileList オブジェクト、またはドラッグ & ドロップ操作の DataTransfer オブジェクトから取得することができます。 FileReader は、ユーザーが HTML の <input type="file"> 要素を使って、あるいはドラッグ & ドロップで明示的に選択したファイルの内容にのみアクセスすることができます。ユーザーのファイルシステムからパス名でファイルを読み込むために使用することはでき

    FileReader - Web API | MDN
    Kureduki_Maari
    Kureduki_Maari 2014/03/04
    @Shibamata_poke .。oO(readAsDataURL) FileReader - Web API インターフェイス | MDN
  • Strict-Transport-Security - HTTP | MDN

    HTTP ガイド リソースと URI ウェブ上のリソースの識別 データ URL MIME タイプ入門 よくある MIME タイプ www 付きと www なしの URL の選択 HTTP ガイド HTTP の基 HTTP の概要 HTTP の進化 HTTP メッセージ 典型的な HTTP セッション HTTP/1.x のコネクション管理 プロトコルのアップグレードの仕組み HTTP セキュリティ Content Security Policy (CSP) HTTP Strict Transport Security (HSTS) X-Content-Type-Options X-Frame-Options X-XSS-Protection サイトの安全化 HTTP Observatory HTTP アクセス制御 (CORS) HTTP 認証 HTTP キャッシュ HTTP の圧縮 HTT

    Strict-Transport-Security - HTTP | MDN
    Kureduki_Maari
    Kureduki_Maari 2014/02/06
    .。oO(此んなものが) HTTP Strict Transport Security - Security | MDN
  • String.prototype.repeat() - JavaScript | MDN

    標準組み込みオブジェクトStringコンストラクターString() コンストラクター静的メソッドString.fromCharCode()String.fromCodePoint()String.raw()インスタンスメソッドString.prototype.anchor() 非推奨 String.prototype.at()String.prototype.big() 非推奨 String.prototype.blink() 非推奨 String.prototype.bold() 非推奨 String.prototype.charAt()String.prototype.charCodeAt()String.prototype.codePointAt()String.prototype.concat()String.prototype.endsWith()String.prototyp

    String.prototype.repeat() - JavaScript | MDN
    Kureduki_Maari
    Kureduki_Maari 2014/01/02
    .。oO(MDNかっちょよく成ってますね>< String.prototype.repeat - JavaScript | MDN
  • text-overflow - CSS: カスケーディングスタイルシート | MDN

    CSS チュートリアル CSS の基 CSS の第一歩 CSS の第一歩の概要 CSS とは何か CSS 入門 CSS の全体像 CSS の働き 評価課題: 経歴ページのスタイル設定 CSS の構成要素 CSS の構成要素の概要 CSS セレクター Type, class, and ID selectors Attribute selectors Pseudo-classes and pseudo-elements Combinators カスケードと継承 Cascade layers ボックスモデル 背景と境界 書字方向の操作 内容のはみ出し CSS の値と単位 CSS における大きさの指定 画像、メディア、フォームの要素 表のスタイル付け CSS のデバッグ CSS の整理 評価課題: CSS の基的な理解度 評価課題: 素敵なレターヘッドの便箋の作成 評価課題: かっこいいボック

    text-overflow - CSS: カスケーディングスタイルシート | MDN
  • HTMLElement: contentEditable プロパティ - Web API | MDN

    Kureduki_Maari
    Kureduki_Maari 2013/04/07
    .。oO(あ謎のformじゃないform、裏に隠しformが有るんじゃなくて、contentEditableか(今更
  • Object - JavaScript | MDN

    Kureduki_Maari
    Kureduki_Maari 2012/02/27
    @poochin .。oO(作るしか無い…
  • String.prototype.replace() - JavaScript | MDN

    Standard built-in objectsStringConstructorString() constructorStatic methodsString.fromCharCode()String.fromCodePoint()String.raw()Instance methodsString.prototype.anchor() Deprecated String.prototype.at()String.prototype.big() Deprecated String.prototype.blink() Deprecated String.prototype.bold() Deprecated String.prototype.charAt()String.prototype.charCodeAt()String.prototype.codePointAt()String

    String.prototype.replace() - JavaScript | MDN
    Kureduki_Maari
    Kureduki_Maari 2012/02/11
    @ryunosinfx .。oO(マッチした文字列たちです
  • ゲッターとセッターの定義 - JavaScript | MDN

    ゲッターとセッターの定義 ゲッターはある属性の値を取得するメソッドです。セッターは属性に値を設定するメソッドです。全ての定義済みコアオブジェクトと、新しいプロパティの追加をサポートしているユーザ定義オブジェクトに対してゲッターとセッターを定義できます。ゲッターとセッターの定義にはオブジェクトリテラル構文を使用します。 以下の例では、ユーザ定義オブジェクト o についてゲッターとセッターがどのように機能するかを説明します。JavaScript シェル とは JavaScript コードをバッチモードで、またはインタラクティブにテストすることができる、開発者向けのアプリケーションのことです。 o オブジェクトのプロパティは以下のとおりです。 o.a - 数値 o.b - o.a に 1 を加えて返すゲッター o.c - o.a の値にその値の 1/2 の値をセットするセッター js> o =

    ゲッターとセッターの定義 - JavaScript | MDN
    Kureduki_Maari
    Kureduki_Maari 2011/02/27
    此んなん。[ http://bit.ly/hdx30Y
  • Node: compareDocumentPosition() method - Web APIs | MDN

    An integer value representing otherNode's position relative to node as a bitmask combining the following constant properties of Node: Node.DOCUMENT_POSITION_DISCONNECTED (1) Both nodes are in different documents or different trees in the same document. Node.DOCUMENT_POSITION_PRECEDING (2) otherNode precedes the node in either a pre-order depth-first traversal of a tree containing both (e.g., as an

    Node: compareDocumentPosition() method - Web APIs | MDN
    Kureduki_Maari
    Kureduki_Maari 2011/01/12
    Node.compareDocumentPosition - MDC Doc Center
  • 1