Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: Source/core/css/CSSProperty.cpp

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Sync Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 case CSSPropertyWebkitBoxAlign: 547 case CSSPropertyWebkitBoxAlign:
548 case CSSPropertyWebkitBoxDecorationBreak: 548 case CSSPropertyWebkitBoxDecorationBreak:
549 case CSSPropertyWebkitBoxFlex: 549 case CSSPropertyWebkitBoxFlex:
550 case CSSPropertyWebkitBoxFlexGroup: 550 case CSSPropertyWebkitBoxFlexGroup:
551 case CSSPropertyWebkitBoxLines: 551 case CSSPropertyWebkitBoxLines:
552 case CSSPropertyWebkitBoxOrdinalGroup: 552 case CSSPropertyWebkitBoxOrdinalGroup:
553 case CSSPropertyWebkitBoxOrient: 553 case CSSPropertyWebkitBoxOrient:
554 case CSSPropertyWebkitBoxPack: 554 case CSSPropertyWebkitBoxPack:
555 case CSSPropertyWebkitBoxReflect: 555 case CSSPropertyWebkitBoxReflect:
556 case CSSPropertyWebkitBoxShadow: 556 case CSSPropertyWebkitBoxShadow:
557 case CSSPropertyInternalCallback:
557 case CSSPropertyWebkitClipPath: 558 case CSSPropertyWebkitClipPath:
558 case CSSPropertyWebkitColumnAxis: 559 case CSSPropertyWebkitColumnAxis:
559 case CSSPropertyWebkitColumnBreakAfter: 560 case CSSPropertyWebkitColumnBreakAfter:
560 case CSSPropertyWebkitColumnBreakBefore: 561 case CSSPropertyWebkitColumnBreakBefore:
561 case CSSPropertyWebkitColumnBreakInside: 562 case CSSPropertyWebkitColumnBreakInside:
562 case CSSPropertyWebkitColumnCount: 563 case CSSPropertyWebkitColumnCount:
563 case CSSPropertyWebkitColumnGap: 564 case CSSPropertyWebkitColumnGap:
564 case CSSPropertyWebkitColumnProgression: 565 case CSSPropertyWebkitColumnProgression:
565 case CSSPropertyWebkitColumnRule: 566 case CSSPropertyWebkitColumnRule:
566 case CSSPropertyWebkitColumnRuleColor: 567 case CSSPropertyWebkitColumnRuleColor:
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 return false; 676 return false;
676 case CSSPropertyInvalid: 677 case CSSPropertyInvalid:
677 ASSERT_NOT_REACHED(); 678 ASSERT_NOT_REACHED();
678 return false; 679 return false;
679 } 680 }
680 ASSERT_NOT_REACHED(); 681 ASSERT_NOT_REACHED();
681 return false; 682 return false;
682 } 683 }
683 684
684 } // namespace WebCore 685 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698