### Individual MIME Type: example Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Guides/MIME_types Explains the `example` MIME type, reserved for illustrating MIME type usage in placeholder contexts, not for real-world code. ```APIDOC { "type": "example", "description": "MIME タイプの使用方法を例示する際のプレイスホルダーとして使用するために予約されています。", "notes": "これらはサンプルコードのリストや文書の外で使用してはいけません。example はサブタイプとして使用することもできます。例えば、ウェブ上で音声として動作する例として、 MIME タイプの audio/example を使用してタイプがプレイスホルダーであり、実世界で使用されるコードでは適切なもので置き換えられることを表します。" } ``` -------------------------------- ### JavaScript Bitwise OR Assignment Operator Example Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Bitwise_OR_assignment Demonstrates the usage of the bitwise OR assignment operator (`|=`) with a simple example, showing the initial value, the operation, and the final result with binary representations. ```javascript let a = 5; // 00000000000000000000000000000101 a |= 3; // 00000000000000000000000000000011 console.log(a); // 00000000000000000000000000000111 // Expected output: 7 ``` -------------------------------- ### HTTP POST Method Syntax Example Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Reference/Methods/POST Illustrates the basic syntax for an HTTP POST request, showing the method and a placeholder path for the resource to which data is being sent. ```APIDOC POST /test ``` -------------------------------- ### CSS for SVG display example Source: https://developer.mozilla.org/ja/docs/Web/SVG/Reference/Attribute/display Provides basic CSS styling for HTML, body, and SVG elements to ensure they take full height, setting up the environment for SVG examples. ```css html, body, svg { height: 100%; } ``` -------------------------------- ### JavaScript Basic Division Examples with Floor Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Division Provides additional examples of division in JavaScript, including floating-point results and using `Math.floor` for integer division. ```javascript 1 / 2; // 0.5 Math.floor(3 / 2); // 1 1.0 / 2.0; // 0.5 ``` -------------------------------- ### Basic JavaScript Promise Creation and Resolution Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise A fundamental example demonstrating how to create a new JavaScript Promise using the `Promise` constructor and how to consume its resolved value using the `.then()` method. It simulates an asynchronous operation with `setTimeout`. ```js const myFirstPromise = new Promise((resolve, reject) => { // resolve(...) は、非同期で行っていたことが成功したときに呼び出し、失敗したときには reject(...) を呼び出します。 // この例では、setTimeout(...) を使用して非同期コードをエミュレーションしています。 // 実際には、XHR や HTML API のようなものを使用することになります。 setTimeout(() => { resolve("成功!"); // やった!うまくいった! }, 250); }); myFirstPromise.then((successMessage) => { // successMessage は上記の resolve(...) 関数に渡されたものになる。 // 文字列とは限らないが、成功メッセージだけであれば、おそらくそうなる。 console.log(`Yay! ${successMessage}`); }); ``` -------------------------------- ### JavaScript Promise Instance Methods API Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise API documentation for the core instance methods of the JavaScript `Promise` object, detailing their purpose, return values, and how they handle fulfillment and rejection. ```APIDOC Promise.prototype.catch(): Adds a rejection handler callback to the promise. Returns a new promise that resolves with the return value of the callback when invoked, or resolves with the original fulfillment value if the promise is fulfilled. Promise.prototype.finally(): Adds a handler to the promise and returns a new promise that resolves when the original promise is settled. This handler is called when the original promise completes, regardless of success or failure. Promise.prototype.then(): Adds fulfillment and rejection handlers to the promise and returns a new promise that resolves with the return value of the invoked handler. If the promise is not handled (i.e., the associated handlers `onFulfilled` or `onRejected` are not functions), it returns the original resolved value. ``` -------------------------------- ### HTML Structure for Interactive Promise Demo Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise Provides the necessary HTML elements, including a button to trigger Promise creation and a `div` element to display log messages, for an interactive demonstration of JavaScript Promises. ```html
``` -------------------------------- ### Example HLS Index File (.m3u8) Structure Source: https://developer.mozilla.org/ja/docs/Web/Media/Guides/Audio_and_video_delivery/Setting_up_adaptive_streaming_media_sources Demonstrates the structure of an HLS index file, also known as a playlist, using the .m3u8 format. It includes version, target duration, media sequence, and references to media segments with both old and new style duration formats, ending with the #EXT-X-ENDLIST tag. ```HLS Playlist #EXT-X-VERSION:3 #EXTM3U #EXT-X-TARGETDURATION:10 #EXT-X-MEDIA-SEQUENCE:1 # Old-style integer duration; avoid for newer clients. #EXTINF:10, http://media.example.com/segment0.ts # New-style floating-point duration; use for modern clients. #EXTINF:10.0, http://media.example.com/segment1.ts #EXTINF:9.5, http://media.example.com/segment2.ts #EXT-X-ENDLIST ``` -------------------------------- ### Basic max-width Usage Examples Source: https://developer.mozilla.org/ja/docs/Web/CSS/max-width Demonstrates various basic values for the `max-width` CSS property, including pixel, em, percentage, and character units. ```CSS max-width: 150px; ``` ```CSS max-width: 20em; ``` ```CSS max-width: 75%; ``` ```CSS max-width: 20ch; ``` -------------------------------- ### HTML Structure for max-width Example Source: https://developer.mozilla.org/ja/docs/Web/CSS/max-width Provides the HTML markup for a section and a div element used in the `max-width` demonstration, allowing for visual changes. ```HTML
Change the maximum width.
``` -------------------------------- ### Demonstrate Bitwise AND Assignment (`&=`) Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Bitwise_AND_assignment This example shows the basic usage of the bitwise AND assignment operator (`&=`), calculating the bitwise AND of `a` and `3` and assigning the result back to `a`. It includes binary representations for clarity. ```javascript let a = 5; // 00000000000000000000000000000101 a &= 3; // 00000000000000000000000000000011 console.log(a); // 00000000000000000000000000000001 // Expected output: 1 ``` -------------------------------- ### General CSS Styles for Layout and Elements Source: https://developer.mozilla.org/ja/docs/Web/CSS/clip-path Provides the foundational CSS styles for the page layout, including flexbox for grid arrangement, container styling, and specific styles for notes, cells, and paragraph elements. These styles support the visual presentation of the clipping examples. ```CSS html, body { height: 100%; box-sizing: border-box; background: #eee; } .grid { width: 100%; height: 100%; display: flex; font: 1em monospace; } .row { display: flex; flex: 1 auto; flex-direction: row; flex-wrap: wrap; } .col { flex: 1 auto; } .cell { margin: 0.5em; padding: 0.5em; background-color: #fff; overflow: hidden; text-align: center; flex: 1; } .note { background: #fff3d4; padding: 1em; margin: 0.5em 0.5em 0; font: 0.8em sans-serif; text-align: left; white-space: nowrap; } .note + .row .cell { margin-top: 0; } .container { display: inline-block; border: 1px dotted grey; position: relative; } .container::before { content: "margin"; position: absolute; top: 2px; left: 2px; font: italic 0.6em sans-serif; } .view-box { box-shadow: 1rem 1rem 0 #efefef inset, -1rem -1rem 0 #efefef inset; } .container.view-box::after { content: "view-box"; position: absolute; left: 1.1rem; top: 1.1rem; font: italic 0.6em sans-serif; } .cell span { display: block; margin-bottom: 0.5em; } p { font-family: sans-serif; background: #000; color: pink; margin: 2em; padding: 3em 1em; border: 1em solid pink; width: 6em; } .none { ``` -------------------------------- ### JavaScript Startup Function for Page Initialization Source: https://developer.mozilla.org/ja/docs/Web/API/Intersection_Observer_API/Timing_element_visibility Initializes the web page by setting up references to the main content area, attaching an event listener for page visibility changes, configuring and creating an IntersectionObserver for ad visibility, building initial content, and starting a periodic refresh interval for ads. ```JavaScript window.addEventListener("load", startup, false); function startup() { contentBox = document.querySelector("main"); document.addEventListener("visibilitychange", handleVisibilityChange, false); const observerOptions = { root: null, rootMargin: "0px", threshold: [0.0, 0.75] }; adObserver = new IntersectionObserver(intersectionCallback, observerOptions); buildContents(); refreshIntervalID = setInterval(handleRefreshInterval, 1000); } ``` -------------------------------- ### Examples of Bitwise AND Assignment with Numbers and BigInts Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Bitwise_AND_assignment This example demonstrates the bitwise AND assignment operator (`&=`) with both standard numbers and BigInts, showing how it performs the bitwise AND operation and assigns the result. It includes binary representation for the number example. ```javascript let a = 5; // 5: 00000000000000000000000000000101 // 2: 00000000000000000000000000000010 a &= 2; // 0 let b = 5n; b &= 2n; // 0n ``` -------------------------------- ### HTTP Method: GET Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Reference/Status/403 Documents the GET HTTP request method. ```APIDOC GET ``` -------------------------------- ### CSS content Property Syntax Examples Source: https://developer.mozilla.org/ja/docs/Web/CSS/content Demonstrates various syntax forms and value types for the CSS `content` property, including keywords, image URLs, gradients, image sets, alternative text, strings, counters, attribute values, quotes, and global values. ```css /* 他の値と組み合わせることができないキーワード */ content: normal; content: none; /* 値 */ content: url("http://www.example.com/test.png"); content: linear-gradient(#e66465, #9198e5); content: image-set("image1x.png" 1x, "image2x.png" 2x); /* 生成コンテンツの代替テキスト、レベル 3 の仕様書で追加 */ content: url("../img/test.png") / "This is the alt text"; /* 値 */ content: "unparsed text"; /* 値、任意で */ content: counter(chapter_counter); content: counter(chapter_counter, upper-roman); content: counters(section_counter, "."); content: counters(section_counter, ".", decimal-leading-zero); /* HTML 属性値にリンクした attr() 値 */ content: attr(href); /* 言語や位置に依存したキーワード */ content: open-quote; content: close-quote; content: no-open-quote; content: no-close-quote; /* normal と none を除き、複数の値が同時に使用可 */ content: "prefix" url(http://www.example.com/test.png); content: "prefix" url("/img/test.png") "suffix" / "Alt text"; content: open-quote counter(chapter_counter); /* グローバル値 */ content: inherit; content: initial; content: revert; content: revert-layer; content: unset; ``` -------------------------------- ### CSS Styling for min-block-size Example Element Source: https://developer.mozilla.org/ja/docs/Web/CSS/min-block-size This CSS snippet applies basic styling to the example element, setting its display properties, background color, and text color to make the min-block-size effect more visible. ```CSS #example-element { display: flex; flex-direction: column; background-color: #5b6dcd; justify-content: center; color: #ffffff; } ``` -------------------------------- ### Advanced JavaScript Promise Chaining and Error Handling Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Promise This example showcases various techniques for using Promise features and handling diverse situations that may arise. It demonstrates promise chaining with `.then()` calls, error handling with `.catch()`, and final execution with `.finally()`. It also illustrates how API functions can generate and return self-contained Promises. ```js // エラー処理が経験できるように、"threshold" はランダムにエラーを発生させる。 const THRESHOLD_A = 8; // 0 をエラーとして使用するため function tetheredGetNumber(resolve, reject) { setTimeout(() => { const randomInt = Date.now(); const value = randomInt % 10; if (value < THRESHOLD_A) { resolve(value); } else { reject(`Too large: ${value}`); } }, 500); } function determineParity(value) { const isOdd = value % 2 === 1; return { value, isOdd }; } function troubleWithGetNumber(reason) { const err = new Error("数値の取得に失敗しました", { cause: reason }); console.error(err); throw err; } function promiseGetWord(parityInfo) { return new Promise((resolve, reject) => { const { value, isOdd } = parityInfo; if (value >= THRESHOLD_A - 1) { reject(`Still too large: ${value}`); } else { parityInfo.wordEvenOdd = isOdd ? "odd" : "even"; resolve(parityInfo); } }); } new Promise(tetheredGetNumber) .then(determineParity, troubleWithGetNumber) .then(promiseGetWord) .then((info) => { console.log(`Got: ${info.value}, ${info.wordEvenOdd}`); return info; }) .catch((reason) => { if (reason.cause) { console.error("以前扱ったエラーがあります"); } else { console.error(`promiseGetWord() に失敗: ${reason}`); } }) .finally((info) => console.log("完了しました")); ``` -------------------------------- ### JavaScript Bitwise OR Assignment Operator Detailed Example Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Bitwise_OR_assignment Illustrates a practical use of the bitwise OR assignment operator (`|=`), showing the binary representation of operands and the result to clarify the bitwise operation. ```javascript let a = 5; a |= 2; // 7 // 5: 00000000000000000000000000000101 // 2: 00000000000000000000000000000010 // ----------------------------------- // 7: 00000000000000000000000000000111 ``` -------------------------------- ### HTTP Request Methods Reference Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Reference/Headers/Permissions-Policy/encrypted-media Details standard HTTP request methods like GET, POST, PUT, and DELETE, defining their purpose and usage. ```APIDOC CONNECT DELETE GET HEAD OPTIONS PATCH POST PUT TRACE ``` -------------------------------- ### SVG Definition of a Network Diagram Source: https://developer.mozilla.org/ja/docs/Web/SVG/Reference/Element/metadata This SVG code defines reusable symbols for network components such as a hub, hub plugs, and computers. It then instantiates these symbols to construct a visual representation of a simple computer network, including connections (cables) between the hub and computers. The example also includes basic styling for the SVG elements and metadata for RDF connections. ```html Everything Network An example of a computer network based on a hub. A 10BaseT/100baseTX socket A typical 10BaseT/100BaseTX network hub Hub Socket 1 Socket 2 Socket 3 Socket 4 Socket 5 A common desktop PC Monitor stand One of those cool swivelling monitor stands that sit under the monitor Monitor A very fancy monitor The computer A desktop computer - broad flat box style disc drive A built-in disc drive Network Hub Computer A Computer B Cable A 10BaseT twisted pair cable Cable B 10BaseT twisted pair cable ``` -------------------------------- ### HTML/SVG Example for Difference Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'difference' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
difference
``` -------------------------------- ### JavaScript Basic Division Examples Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/Division Demonstrates various division operations in JavaScript, including integer division, floating-point division, type coercion, and division by zero. ```javascript console.log(12 / 2); // Expected output: 6 console.log(3 / 2); // Expected output: 1.5 console.log(6 / "3"); // Expected output: 2 console.log(2 / 0); // Expected output: Infinity ``` -------------------------------- ### Example: Basic JavaScript Generator Function Usage Source: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Operators/function* Demonstrates a basic generator function `foo` that yields 'a', 'b', 'c', and how to iterate over its yielded values to concatenate them into a string. This example shows the typical consumption pattern for generator functions. ```javascript const foo = function* () { yield "a"; yield "b"; yield "c"; }; let str = ""; for (const val of foo()) { str = str + val; } console.log(str); // Expected output: "abc" ``` -------------------------------- ### HTML/SVG Example for Soft-Light Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'soft-light' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
soft-light
``` -------------------------------- ### Request WebGPU Adapter and Device in JavaScript Source: https://developer.mozilla.org/ja/docs/Web/API/WebGPU_API This JavaScript code snippet demonstrates the fundamental steps to initialize WebGPU access. It first checks for WebGPU support via `navigator.gpu`, then asynchronously requests a `GPUAdapter` and subsequently a `GPUDevice`, which are essential for interacting with the GPU. ```js async function init() { if (!navigator.gpu) { throw Error("WebGPU に対応していません。"); } const adapter = await navigator.gpu.requestAdapter(); if (!adapter) { throw Error("WebGPU アダプターの要求に失敗しました。"); } const device = await adapter.requestDevice(); //... } ``` -------------------------------- ### Styling for max-width Example Element Source: https://developer.mozilla.org/ja/docs/Web/CSS/max-width Defines the CSS styles for the `#example-element` used in the `max-width` demonstration, including flexbox properties, background color, height, and text color. ```CSS #example-element { display: flex; flex-direction: column; background-color: #5b6dcd; height: 80%; justify-content: center; color: #ffffff; } ``` -------------------------------- ### HTML/SVG Example for Hard-Light Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'hard-light' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
hard-light
``` -------------------------------- ### HTML/SVG Example for Color-Burn Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'color-burn' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
color-burn
``` -------------------------------- ### HTML/SVG Example for Color-Dodge Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'color-dodge' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
color-dodge
``` -------------------------------- ### HTML/SVG Example for Overlay Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'overlay' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
overlay
``` -------------------------------- ### Web API Interface: XRLightProbe Source: https://developer.mozilla.org/ja/docs/Web/API Documentation for the XRLightProbe Web API interface, used to sample lighting information from the real world. This interface is experimental. ```APIDOC XRLightProbe Experimental ``` -------------------------------- ### CSP Violation Report Example Scenario Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Reference/Headers/Content-Security-Policy-Report-Only Illustrates a Content Security Policy (CSP) violation scenario, including the applied CSP-Report-Only header, the HTML document causing the violation, and the resulting JSON violation report sent by the browser. ```text Content-Security-Policy-Report-Only: default-src 'none'; style-src cdn.example.com; report-uri /_/csp-reports ``` ```html Sign Up ... Content ... ``` ```js { "csp-report": { "document-uri": "http://example.com/signup.html", "referrer": "", "blocked-uri": "http://example.com/css/style.css", "violated-directive": "style-src cdn.example.com", "original-policy": "default-src 'none'; style-src cdn.example.com; report-uri /_/csp-reports", "disposition": "report" } } ``` -------------------------------- ### HTML/SVG Example for Lighten Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'lighten' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
lighten
``` -------------------------------- ### CSS Property: marker-start Source: https://developer.mozilla.org/ja/docs/Web/CSS/display Reference for the CSS property marker-start, which defines the marker symbol at the start of a path. ```APIDOC marker-start ``` -------------------------------- ### HTML/SVG Example for Screen Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'screen' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
screen
``` -------------------------------- ### WebAssembly Numeric Instructions Source: https://developer.mozilla.org/ja/docs/Web/Assembly/Reference/JavaScript_interface/RuntimeError Provides a comprehensive list of WebAssembly instructions for performing various numeric operations, covering arithmetic, bitwise, comparison, conversion, and other mathematical functions. ```APIDOC Numeric Instructions: - Absolute - Addition - AND - Ceil - Const - Convert - Copy sign - Count leading zeros - Count trailing zeros - Demote - Division - Equal - Extend - Floor - Greater or equal - Greater than - Left rotate - Left shift - Less or equal - Less than - Max - Min - Multiplication - Nearest - Negate - Not equal - OR - Population count - Promote - Reinterpret - Remainder - Right rotate - Right shift - Square root - Subtraction - Truncate (float to float) - Truncate (float to int) - Wrap ``` -------------------------------- ### HTTP Reference: Request Methods Source: https://developer.mozilla.org/ja/docs/Web/HTTP/Reference/Headers/Cross-Origin-Resource-Policy Enumerates standard HTTP request methods used for various operations on web resources, such as GET, POST, and PUT. ```APIDOC CONNECT DELETE GET HEAD OPTIONS PATCH POST PUT TRACE ``` -------------------------------- ### HTML/SVG Example for Darken Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'darken' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. ```HTML
darken
``` -------------------------------- ### Web API Interface: XRSystem Source: https://developer.mozilla.org/ja/docs/Web/API Documentation for the XRSystem Web API interface, providing access to XR capabilities and session creation. This interface is experimental. ```APIDOC XRSystem Experimental ``` -------------------------------- ### Define SVG Clip Path and HTML for Clipping Example Source: https://developer.mozilla.org/ja/docs/Web/SVG/Guides/Applying_SVG_effects_to_HTML_content This HTML snippet defines an SVG `clipPath` (`clipping-path-1`) using a circle and a rectangle, intended for clipping HTML content. It also includes example HTML paragraphs and a button to demonstrate how these elements would be clipped and interact with dynamic changes. ```HTML

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.

``` -------------------------------- ### HTML/SVG Example for Exclusion Blend Mode Source: https://developer.mozilla.org/ja/docs/Web/CSS/mix-blend-mode Demonstrates the visual effect of the 'exclusion' CSS blend mode by applying it to a container holding overlapping SVG ellipse elements. This setup typically uses the CSS mix-blend-mode property to achieve the desired blending effect. Note: The provided snippet for this mode is incomplete. ```HTML
exclusion
``` -------------------------------- ### CSS conic-gradient() Off-Center Position Example Source: https://developer.mozilla.org/ja/docs/Web/CSS/gradient/conic-gradient Illustrates how to create a conic gradient with its center shifted. The gradient starts from 0 degrees at a custom position (0% 25%) and transitions through blue, green, and yellow. ```html
``` ```css div { width: 100px; height: 100px; } ``` ```css div { background: conic-gradient(from 0deg at 0% 25%, blue, green, yellow 180deg); } ``` -------------------------------- ### Web API Interface: XRLightEstimate Source: https://developer.mozilla.org/ja/docs/Web/API Documentation for the XRLightEstimate Web API interface, providing an estimate of the real-world lighting conditions. This interface is experimental. ```APIDOC XRLightEstimate Experimental ``` -------------------------------- ### CSS Properties and Functions Reference (Q-R) Source: https://developer.mozilla.org/ja/docs/Web/CSS/Reference A consolidated list of CSS properties, functions, and at-rules, serving as a quick reference for web development. ```APIDOC Q: - Q - quotes R: - r - rad - radial-gradient() - range (@counter-style) - - ray() - :read-only - :read-write - rect() - rem() - repeat() - repeating-conic-gradient() - repeating-linear-gradient() - repeating-radial-gradient() - :required - resize - - reversed() - revert - rgb() - :right - right - @right-top - :root - rotate - rotate() - rotate3d() - rotateX() - rotateY() - rotateZ() - round() - row-gap - ruby-align - ruby-merge - ruby-position - rx - ry ```