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
尋找差異