aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/polyfill
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/polyfill
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/glossary/polyfill')
-rw-r--r--files/de/glossary/polyfill/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/de/glossary/polyfill/index.html b/files/de/glossary/polyfill/index.html
new file mode 100644
index 0000000000..838443fbdf
--- /dev/null
+++ b/files/de/glossary/polyfill/index.html
@@ -0,0 +1,30 @@
+---
+title: Polyfill
+slug: Glossary/Polyfill
+tags:
+ - CSS
+ - Glossary
+ - HTML
+ - JavaScript
+translation_of: Glossary/Polyfill
+---
+<p><span class="seoSummary"><strong>Polyfill</strong> ist ein üblicherweise in {{Glossary("JavaScript")}} geschriebener Code-Baustein, der dazu dient, moderne {{Glossary("HTML")}}-, {{Glossary("CSS")}}- oder JavaScript-Funktionalitäten in älteren {{Glossary("Browser", "Browsern")}} zur Verfügung zu stellen, die diese Funktionailtät nicht von Haus aus unterstützen.</span></p>
+
+<p>Ein Polyfill könnte bspw.</p>
+
+<ul>
+ <li>die Funktion des HTML5-Elements {{HTMLElement("canvas")}} in Internet Explorer 7 (durch die Nutzung eines Silverlight-Plugins) <em>oder</em></li>
+ <li>die Unterstützung der CSS3-Einheit {{CSSxRef("length#rem", "rem")}} oder der CSS3-Eigenschaft {{CSSxRef("text-shadow")}} in Firefox 3.5 <em>oder</em></li>
+ <li>die JavaScript-Funktion {{JSxREF("Array.find()")}} in Chrome 44</li>
+</ul>
+
+<p>nachbilden.</p>
+
+<h2 id="Mehr_erfahren">Mehr erfahren</h2>
+
+<h3 id="Allgemeinwissen">Allgemeinwissen</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Polyfill")}} auf Wikipedia</li>
+ <li><a href="https://remysharp.com/2010/10/08/what-is-a-polyfill">What is a polyfill?</a> (englischsprachiger Artikel von Remy Sharp, Erfinder des Begriffs)</li>
+</ul>