Diff
checker
Texte
Texte
Images
Documents
Excel
Dossiers
Legal
Enterprise
Application de bureau
Prix
Se connecter
Télécharger Diffchecker Desktop
Comparer le texte
Trouver la différence entre deux fichiers texte
Outils
Historique
Éditeur live
Cacher identiques
Sans retour à la ligne
Vue
Divisé
Unifié
Niveau de précision
Intelligent
Mot
Caractère
Coloration syntaxique
Choisir la syntaxe
Ignorer
Transformer le texte
Aller au premier écart
Modifier l'entrée
Diffchecker Desktop
La façon la plus sécurisée d'utiliser Diffchecker. Obtenez l'application Diffchecker Desktop : vos diffs ne quittent jamais votre ordinateur !
Obtenir Desktop
Untitled diff
Créé
il y a 9 ans
Le diff n'expire jamais
Effacer
Exporter
Partager
Expliquer
3 suppressions
Lignes
Total
Supprimé
Caractères
Total
Supprimé
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
25 lignes
Copier tout
1 ajout
Lignes
Total
Ajouté
Caractères
Total
Ajouté
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
24 lignes
Copier tout
// 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;
Copier
Copié
Copier
Copié
class CSSParserContext;
class CSSParserContext;
Copier
Copié
Copier
Copié
// Stores function pointers matching those declared in CSSPropertyAPI.
// Stores function pointers matching those declared in CSSPropertyAPI.
struct CSSPropertyDescriptor {
struct CSSPropertyDescriptor {
Copier
Copié
Copier
Copié
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
Différences enregistrées
Texte d'origine
Ouvrir un fichier
// 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
Texte modifié
Ouvrir un fichier
// 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
Trouver la différence