Diff
checker
文本
文本
图像
文档
Excel
文件夹
Legal
Enterprise
桌面版
定价
登录
下载 Diffchecker 桌面版
比较文本
查找两个文本文件之间的差异
工具
历史
实时编辑器
折叠未更改行
关闭换行
视图
拆分
统一
比对精度
智能
单词
字符
语法高亮
选择语法
忽略
文本转换
转到第一个差异
编辑输入
Diffchecker Desktop
运行Diffchecker最安全的方式。获取Diffchecker桌面应用:您的差异永远不会离开您的电脑!
获取桌面版
Untitled diff
创建于
9年前
差异永不过期
清除
导出
分享
解释
3 删除
行
总计
删除
字符
总计
删除
要继续使用此功能,请升级到
Diff
checker
Pro
查看价格
25 行
全部复制
1 添加
行
总计
添加
字符
总计
添加
要继续使用此功能,请升级到
Diff
checker
Pro
查看价格
24 行
全部复制
// 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;
复制
已复制
复制
已复制
class CSSParserContext;
class CSSParserContext;
复制
已复制
复制
已复制
// Stores function pointers matching those declared in CSSPropertyAPI.
// Stores function pointers matching those declared in CSSPropertyAPI.
struct CSSPropertyDescriptor {
struct CSSPropertyDescriptor {
复制
已复制
复制
已复制
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
已保存差异
原始文本
打开文件
// 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
更改后文本
打开文件
// 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
查找差异