From dd970ebde4659015cacb03f3cec08ba3662f76b7 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Sat, 20 Mar 2021 18:32:06 -0700 Subject: remove fx_minversion_inline macro calls (#258) --- files/de/web/api/document/index.html | 2 +- .../basic_concepts_behind_indexeddb/index.html | 4 ++-- files/de/web/api/node/index.html | 4 ++-- files/de/web/api/window/index.html | 10 +++++----- files/de/web/css/@keyframes/index.html | 2 +- files/de/web/css/border-radius/index.html | 2 +- files/de/web/css/mozilla_extensions/index.html | 22 +++++++++++----------- .../reference/global_objects/regexp/index.html | 2 +- 8 files changed, 24 insertions(+), 24 deletions(-) (limited to 'files/de/web') diff --git a/files/de/web/api/document/index.html b/files/de/web/api/document/index.html index f9b00cacfc..a17dd14278 100644 --- a/files/de/web/api/document/index.html +++ b/files/de/web/api/document/index.html @@ -383,7 +383,7 @@ translation_of: Web/API/Document
This method never did anything and always threw an exception, so it was removed in Gecko 14.0 {{geckoRelease("14.0")}}.
{{domxref("Document.getBoxObjectFor")}} {{obsolete_inline}}
Use the {{domxref("Element.getBoundingClientRect()")}} method instead.
-
{{domxref("Document.loadOverlay")}} {{Fx_minversion_inline("1.5")}}
+
{{domxref("Document.loadOverlay")}}
Loads a XUL overlay dynamically. This only works in XUL documents.
{{domxref("document.queryCommandText")}} {{obsolete_inline("14.0")}}
This method never did anything but throw an exception, and was removed in Gecko 14.0 {{geckoRelease("14.0")}}.
diff --git a/files/de/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html b/files/de/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html index 1e4ce579e2..7eac56fb64 100644 --- a/files/de/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html +++ b/files/de/web/api/indexeddb_api/basic_concepts_behind_indexeddb/index.html @@ -108,7 +108,7 @@ original_slug: Web/API/IndexedDB_API/Grundkonzepte_hinter_IndexedDB

Ein Datenwert über welchen abgelegte Werte aus dem Objektspeicher sortiert und ausgelesen werden können. Der Objektspeicher kann den Schlüssel aus einer dieser drei Quellen erlangen: Einem Schlüsselgenerator, einem Schlüsselpfad und einem explizit angegebem Wert. Der Schlüssel muss aus einem Datentyp bestehen, der eine Nummer hat, die größer ist als die des Schlüssel vor ihm. Jeder Eintrag in einem Objektspeicher muss einen innerhalb des gleichen Objektspeichers einzigartigen Schlüssel haben, deshalb können nicht mehrere Einträge mit demselben Schlüssel in einem vorgegebenem Objektspeicher vorliegen.

- Ein Schlüssel kann einen der folgenden Typen haben: string, date, float und array. Bei Arrays kann der Schlüssel zwischen einem leeren Wert und unendlich liegen. Arrays können wiederum Arrays beinhalten. Es gibt keine Vorschrift nur Schlüssel der Typen string oder integer zu verwenden {{ fx_minversion_inline("11") }}.

+ Ein Schlüssel kann einen der folgenden Typen haben: string, date, float und array. Bei Arrays kann der Schlüssel zwischen einem leeren Wert und unendlich liegen. Arrays können wiederum Arrays beinhalten. Es gibt keine Vorschrift nur Schlüssel der Typen string oder integer zu verwenden.

Alternativ können Sie Einträge eines Objektspeichers auch mithilfe eines Index nachschlagen.

@@ -132,7 +132,7 @@ original_slug: Web/API/IndexedDB_API/Grundkonzepte_hinter_IndexedDB

Each record has a value, which could include anything that can be expressed in JavaScript, including: boolean, number, string, date, object, array, regexp, undefined, and null.

When an object or array is stored, the properties and values in that object or array can also be anything that is a valid value.

-

Blobs and files can be stored, cf. specification {{ fx_minversion_inline("11") }}.

+

Blobs and files can be stored, cf. specification.

Range and scope

diff --git a/files/de/web/api/node/index.html b/files/de/web/api/node/index.html index 9f725381a2..cae595bf66 100644 --- a/files/de/web/api/node/index.html +++ b/files/de/web/api/node/index.html @@ -18,7 +18,7 @@ translation_of: Web/API/Node
{{domxref("Node.baseURI")}} {{readonlyInline}}
Returns a {{domxref("DOMString")}} representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'.
-
{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}} {{ Fx_minversion_inline("3") }}
+
{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}}
(Not available to web content.) The read-only {{ Interface("nsIURI") }} object representing the base URI for the element.
{{domxref("Node.childNodes")}} {{readonlyInline}}
Returns a live {{domxref("NodeList")}} containing all the children of this node. {{domxref("NodeList")}} being live means that if the children of the Node change, the {{domxref("NodeList")}} object is automatically updated.
@@ -36,7 +36,7 @@ translation_of: Web/API/Node
Returns a {{domxref("Node")}} representing the next node in the tree, or null if there isn't such node.
{{domxref("Node.nodeName")}} {{readonlyInline}}
Returns a {{domxref("DOMString")}} containing the name of the Node. The structure of the name will differ with the name type. E.g. An {{domxref("HTMLElement")}} will contain the name of the corresponding tag, like 'audio' for an {{domxref("HTMLAudioElement")}}, a {{domxref("Text")}} node will have the '#text' string, or a {{domxref("Document")}} node will have the '#document' string.
-
{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}{{ Fx_minversion_inline("3") }}
+
{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}
A {{ Interface("nsIPrincipal") }} representing the node principal.
{{domxref("Node.nodeType")}}{{readonlyInline}}
Returns an unsigned short representing the type of the node. Possible values are: diff --git a/files/de/web/api/window/index.html b/files/de/web/api/window/index.html index 26f27d9af0..81fa8597a7 100644 --- a/files/de/web/api/window/index.html +++ b/files/de/web/api/window/index.html @@ -39,7 +39,7 @@ translation_of: Web/API/Window
Gets/sets the status bar text for the given window.
{{domxref("Window.devicePixelRatio")}} {{non-standard_inline}}{{ReadOnlyInline}}
Returns the ratio between physical pixels and device independent pixels in the current display.
-
{{domxref("Window.dialogArguments")}} {{Fx_minversion_inline(3)}} {{ReadOnlyInline}}
+
{{domxref("Window.dialogArguments")}} {{ReadOnlyInline}}
Gets the arguments passed to the window (if it's a dialog box) at the time {{domxref("window.showModalDialog()")}} was called. This is an {{Interface("nsIArray")}}.
{{domxref("Window.directories")}} {{obsolete_inline}}
Synonym of {{domxref("window.personalbar")}}
@@ -106,7 +106,7 @@ translation_of: Web/API/Window
Returns the personalbar object, whose visibility can be toggled in the window.
{{domxref("Window.pkcs11")}} {{obsolete_inline(29)}}
Formerly provided access to install and remove PKCS11 modules.
-
{{domxref("Window.returnValue")}} {{Fx_minversion_inline(3)}}
+
{{domxref("Window.returnValue")}}
The return value to be returned to the function that called {{domxref("window.showModalDialog()")}} to display the window as a modal dialog.
{{domxref("Window.screen")}} {{readOnlyInline}}
Returns a reference to the screen object associated with the window.
@@ -126,7 +126,7 @@ translation_of: Web/API/Window
Returns the number of pixels that the document has already been scrolled vertically.
{{domxref("Window.self")}} {{ReadOnlyInline}}
Returns an object reference to the window object itself.
-
{{domxref("Window.sessionStorage")}} {{Fx_minversion_inline("2.0")}}
+
{{domxref("Window.sessionStorage")}}
Returns a storage object for storing data within a single page session.
{{domxref("Window.sidebar")}} {{non-standard_inline}}{{ReadOnlyInline}}
Returns a reference to the window object of the sidebar.
@@ -215,7 +215,7 @@ translation_of: Web/API/Window
Opens a new window.
{{domxref("Window.openDialog()")}}
Opens a new dialog window.
-
{{domxref("Window.postMessage()")}} {{Fx_minversion_inline(3)}}
+
{{domxref("Window.postMessage()")}}
Provides a secure means for one window to send a string of data to another window, which need not be within the same domain as the first.
{{domxref("Window.print()")}}
Opens the Print Dialog to print the current document.
@@ -253,7 +253,7 @@ translation_of: Web/API/Window
{{todo("NeedsContents")}}
{{domxref("WindowTimers.setTimeout()")}}
Sets a delay for executing a function.
-
{{domxref("Window.showModalDialog()")}} {{Fx_minversion_inline(3)}}
+
{{domxref("Window.showModalDialog()")}}
Displays a modal dialog.
{{domxref("Window.sizeToContent()")}}
Sizes the window according to its content.
diff --git a/files/de/web/css/@keyframes/index.html b/files/de/web/css/@keyframes/index.html index 31acaf56b5..4f7ae0bdc2 100644 --- a/files/de/web/css/@keyframes/index.html +++ b/files/de/web/css/@keyframes/index.html @@ -57,7 +57,7 @@ translation_of: Web/CSS/@keyframes

In diesem Beispiel ist der genutzte Wert des 50%-Keyframe top: 10px und alle anderen Werte des ersten Keyframes werden ignoriert.

-

{{ non-standard_inline }} {{ fx_minversion_inline("14") }}  Kaskadierende Keyframes werden in Firefox ab Version 14 unterstützt. Im oberen Beispiel wird beim 50%-Keyframe der Wert left: 20px beachtet. Dies ist noch nicht in der Spezifikation definiert, wird allerdings gerade diskutiert.

+

{{ non-standard_inline }} Kaskadierende Keyframes werden in Firefox ab Version 14 unterstützt. Im oberen Beispiel wird beim 50%-Keyframe der Wert left: 20px beachtet. Dies ist noch nicht in der Spezifikation definiert, wird allerdings gerade diskutiert.

Syntax

diff --git a/files/de/web/css/border-radius/index.html b/files/de/web/css/border-radius/index.html index a4674ee265..396909e49a 100644 --- a/files/de/web/css/border-radius/index.html +++ b/files/de/web/css/border-radius/index.html @@ -100,7 +100,7 @@ border-radius: [ <Länge> | <Prozentzahl> ]{1,4} border-radius: 2em; -
     {{ fx_minversion_inline(3.5) }}
+
            background: gold;
            border: ridge gold;
 
diff --git a/files/de/web/css/mozilla_extensions/index.html b/files/de/web/css/mozilla_extensions/index.html
index d91ad7bb00..3bbe6a817d 100644
--- a/files/de/web/css/mozilla_extensions/index.html
+++ b/files/de/web/css/mozilla_extensions/index.html
@@ -233,12 +233,12 @@ translation_of: Web/CSS/Mozilla_Extensions
  
  • menupopup
  • menuradio
  • menuseparator
  • -
  • -moz-mac-unified-toolbar {{Fx_minversion_inline(3.5)}}
  • +
  • -moz-mac-unified-toolbar
  • -moz-win-borderless-glass
  • -
  • -moz-win-browsertabbar-toolbox {{Fx_minversion_inline(3)}}
  • -
  • -moz-win-communications-toolbox {{Fx_minversion_inline(3)}}
  • +
  • -moz-win-browsertabbar-toolbox
  • +
  • -moz-win-communications-toolbox
  • -moz-win-glass
  • -
  • -moz-win-media-toolbox {{Fx_minversion_inline(3)}}
  • +
  • -moz-win-media-toolbox
  • -moz-window-button-box
  • -moz-window-button-box-maximized
  • -moz-window-button-close
  • @@ -368,7 +368,7 @@ translation_of: Web/CSS/Mozilla_Extensions
  • -moz-mac-menutextselect
  • -moz-menuhover
  • -moz-menuhovertext
  • -
  • -moz-win-communicationstext {{Fx_minversion_inline(3)}}
  • +
  • -moz-win-communicationstext
  • -moz-win-mediatext {{gecko_minversion_inline(1.9)}}
  • -moz-nativehyperlinktext {{Gecko_minversion_inline("1.9.1")}}
  • @@ -524,10 +524,10 @@ translation_of: Web/CSS/Mozilla_Extensions
      -
    • -moz-min-content {{Fx_minversion_inline(3)}}
    • -
    • -moz-fit-content {{Fx_minversion_inline(3)}}
    • -
    • -moz-max-content {{Fx_minversion_inline(3)}}
    • -
    • -moz-available {{Fx_minversion_inline(3)}}
    • +
    • -moz-min-content
    • +
    • -moz-fit-content
    • +
    • -moz-max-content
    • +
    • -moz-available
    @@ -588,10 +588,10 @@ translation_of: Web/CSS/Mozilla_Extensions
  • {{Cssxref(":-moz-system-metric(scrollbar-end-backward)")}} {{gecko_minversion_inline("1.9")}}
  • {{Cssxref(":-moz-system-metric(scrollbar-end-forward)")}} {{gecko_minversion_inline("1.9")}}
  • {{Cssxref(":-moz-system-metric(scrollbar-start-backward)")}} {{gecko_minversion_inline("1.9")}}
  • -
  • {{Cssxref(":-moz-system-metric(scrollbar-start-forward)")}} {{Fx_minversion_inline(3)}}
  • +
  • {{Cssxref(":-moz-system-metric(scrollbar-start-forward)")}}
  • {{Cssxref(":-moz-system-metric(scrollbar-thumb-proportional)")}} {{gecko_minversion_inline("1.9")}}
  • {{Cssxref(":-moz-system-metric(touch-enabled)")}} {{gecko_minversion_inline("1.9.2")}}
  • -
  • {{Cssxref(":-moz-system-metric(windows-default-theme)")}} {{Fx_minversion_inline(3)}}
  • +
  • {{Cssxref(":-moz-system-metric(windows-default-theme)")}}
  • {{Cssxref("::-moz-table")}} eg@:- resource://gre/res/ua.css
  • {{Cssxref("::-moz-table-cell")}} eg@:- resource://gre/res/ua.css
  • {{Cssxref("::-moz-table-column")}} eg@:- resource://gre/res/ua.css
  • diff --git a/files/de/web/javascript/reference/global_objects/regexp/index.html b/files/de/web/javascript/reference/global_objects/regexp/index.html index 9639ba265f..dfa382bec4 100644 --- a/files/de/web/javascript/reference/global_objects/regexp/index.html +++ b/files/de/web/javascript/reference/global_objects/regexp/index.html @@ -38,7 +38,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/RegExp
    Groß-/Kleinschreibung ignorieren
    m
    multiline; behandelt den Suchkontext als Mehrfachzeilen, d.h. Anfang- und Endeanker (^ und $) entsprechen dem Anfang bzw. Ende jeder einzelnen Zeile (begrenzt durch \n oder \r), nicht nur dem Anfang und Ende der gesamten zu durchsuchenden Zeichenkette.
    -
    y {{Fx_minversion_inline(3)}} {{non-standard_inline}}
    +
    y {{non-standard_inline}}
    sticky; matches only from the index indicated by the lastIndex property of this regular expression in the target string (and does not attempt to match from any later indexes). This allows the match-only-at-start capabilities of the character "^" to effectively be used at any location in a string by changing the value of the lastIndex property.
    -- cgit v1.2.3-54-g00ecf