Diff
checker
Text
Text
Bilder
Dokumente
Excel
Ordner
Legal
Enterprise
Desktop-App
Preise
Einloggen
Diffchecker Desktop herunterladen
Texte vergleichen
Finde den Unterschied zwischen zwei Textdateien
Werkzeuge
Verlauf
Live-Editor
Gleiches ausblenden
Zeilenumbruch aus
Ansicht
Zweispaltig
Einspaltig
Vergleichsgenauigkeit
Intelligent
Wort
Zeichen
Syntaxhervorhebung
Syntax auswählen
Ignorieren
Text umwandeln
Zur ersten Änderung
Eingabe bearbeiten
Diffchecker Desktop
Der sicherste Weg, Diffchecker zu nutzen. Hol dir die Desktop-App: Deine Diffs verlassen nie deinen Computer!
Desktop holen
Untitled diff
Erstellt
vor 9 Jahren
Diff läuft nie ab
Löschen
Exportieren
Teilen
Erklären
3 Entfernungen
Zeilen
Gesamt
Entfernt
Zeichen
Gesamt
Entfernt
Um diese Funktion weiterhin zu nutzen, aktualisiere auf
Diff
checker
Pro
Preise anzeigen
25 Zeilen
Kopieren
1 Hinzufügung
Zeilen
Gesamt
Hinzugefügt
Zeichen
Gesamt
Hinzugefügt
Um diese Funktion weiterhin zu nutzen, aktualisiere auf
Diff
checker
Pro
Preise anzeigen
24 Zeilen
Kopieren
// Copyright 2016 The Chromium Authors. All rights reserved.
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
#include "core/CSSPropertyNames.h"
#include "core/CSSPropertyNames.h"
namespace blink {
namespace blink {
class CSSValue;
class CSSValue;
class CSSParserTokenRange;
class CSSParserTokenRange;
Kopieren
Kopiert
Kopieren
Kopiert
class CSSParserContext;
class CSSParserContext;
Kopieren
Kopiert
Kopieren
Kopiert
// Stores function pointers matching those declared in CSSPropertyAPI.
// Stores function pointers matching those declared in CSSPropertyAPI.
struct CSSPropertyDescriptor {
struct CSSPropertyDescriptor {
Kopieren
Kopiert
Kopieren
Kopiert
const CSSValue* (*parseSingleValue)(CSSParserTokenRange&,
const CSSValue* (*parseSingleValue)(CSSParserTokenRange&,
const CSSParserContext*);
const CSSParserContext*);
bool (*parseShorthand)(bool, CSSParserTokenRange&, const CSSParserContext*);
bool (*parseShorthand)(bool, CSSParserTokenRange&, const CSSParserContext*);
// Returns the corresponding CSSPropertyDescriptor for a given CSSPropertyID.
// Returns the corresponding CSSPropertyDescriptor for a given CSSPropertyID.
// Use this function to access the API for a property. Returns a descriptor
// Use this function to access the API for a property. Returns a descriptor
// with isValid set to false if no descriptor exists for this ID.
// with isValid set to false if no descriptor exists for this ID.
static const CSSPropertyDescriptor& get(CSSPropertyID);
static const CSSPropertyDescriptor& get(CSSPropertyID);
};
};
} // namespace blink
} // namespace blink
Gespeicherte Diffs
Originaltext
Datei öffnen
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "core/CSSPropertyNames.h" namespace blink { class CSSValue; class CSSParserTokenRange; class CSSParserContext; // Stores function pointers matching those declared in CSSPropertyAPI. struct CSSPropertyDescriptor { const CSSValue* (*parseSingleValue)(CSSParserTokenRange&, const CSSParserContext*); bool (*parseShorthand)(bool, CSSParserTokenRange&, const CSSParserContext*); // Returns the corresponding CSSPropertyDescriptor for a given CSSPropertyID. // Use this function to access the API for a property. Returns a descriptor // with isValid set to false if no descriptor exists for this ID. static const CSSPropertyDescriptor& get(CSSPropertyID); }; } // namespace blink
Bearbeitung
Datei öffnen
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "core/CSSPropertyNames.h" namespace blink { class CSSValue; class CSSParserTokenRange; class CSSParserContext; // Stores function pointers matching those declared in CSSPropertyAPI. struct CSSPropertyDescriptor { const CSSValue* (*parseSingleValue)(CSSParserTokenRange&, const CSSParserContext*); bool (*parseShorthand)(bool, CSSParserTokenRange&, const CSSParserContext*); // Returns the corresponding CSSPropertyDescriptor for a given CSSPropertyID. // Use this function to access the API for a property. Returns a descriptor // with isValid set to false if no descriptor exists for this ID. static const CSSPropertyDescriptor& get(CSSPropertyID); }; } // namespace blink
Unterschied finden