| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google, Inc. All rights reserved. | 2 * Copyright (C) 2012 Google, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 case CSSPropertyWebkitBoxAlign: return 203; | 255 case CSSPropertyWebkitBoxAlign: return 203; |
| 256 case CSSPropertyWebkitBoxDirection: return 204; | 256 case CSSPropertyWebkitBoxDirection: return 204; |
| 257 case CSSPropertyWebkitBoxFlex: return 205; | 257 case CSSPropertyWebkitBoxFlex: return 205; |
| 258 case CSSPropertyWebkitBoxFlexGroup: return 206; | 258 case CSSPropertyWebkitBoxFlexGroup: return 206; |
| 259 case CSSPropertyWebkitBoxLines: return 207; | 259 case CSSPropertyWebkitBoxLines: return 207; |
| 260 case CSSPropertyWebkitBoxOrdinalGroup: return 208; | 260 case CSSPropertyWebkitBoxOrdinalGroup: return 208; |
| 261 case CSSPropertyWebkitBoxOrient: return 209; | 261 case CSSPropertyWebkitBoxOrient: return 209; |
| 262 case CSSPropertyWebkitBoxPack: return 210; | 262 case CSSPropertyWebkitBoxPack: return 210; |
| 263 case CSSPropertyWebkitBoxReflect: return 211; | 263 case CSSPropertyWebkitBoxReflect: return 211; |
| 264 case CSSPropertyWebkitBoxShadow: return 212; | 264 case CSSPropertyWebkitBoxShadow: return 212; |
| 265 case CSSPropertyWebkitColorCorrection: return 213; | |
| 266 case CSSPropertyWebkitColumnAxis: return 214; | 265 case CSSPropertyWebkitColumnAxis: return 214; |
| 267 case CSSPropertyWebkitColumnBreakAfter: return 215; | 266 case CSSPropertyWebkitColumnBreakAfter: return 215; |
| 268 case CSSPropertyWebkitColumnBreakBefore: return 216; | 267 case CSSPropertyWebkitColumnBreakBefore: return 216; |
| 269 case CSSPropertyWebkitColumnBreakInside: return 217; | 268 case CSSPropertyWebkitColumnBreakInside: return 217; |
| 270 case CSSPropertyWebkitColumnCount: return 218; | 269 case CSSPropertyWebkitColumnCount: return 218; |
| 271 case CSSPropertyWebkitColumnGap: return 219; | 270 case CSSPropertyWebkitColumnGap: return 219; |
| 272 case CSSPropertyWebkitColumnProgression: return 220; | 271 case CSSPropertyWebkitColumnProgression: return 220; |
| 273 case CSSPropertyWebkitColumnRule: return 221; | 272 case CSSPropertyWebkitColumnRule: return 221; |
| 274 case CSSPropertyWebkitColumnRuleColor: return 222; | 273 case CSSPropertyWebkitColumnRuleColor: return 222; |
| 275 case CSSPropertyWebkitColumnRuleStyle: return 223; | 274 case CSSPropertyWebkitColumnRuleStyle: return 223; |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 667 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
| 669 { | 668 { |
| 670 // FIXME: We may want to handle stylesheets that have multiple owners | 669 // FIXME: We may want to handle stylesheets that have multiple owners |
| 671 // http://crbug.com/242125 | 670 // http://crbug.com/242125 |
| 672 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha
sSingleOwnerNode()) | 671 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha
sSingleOwnerNode()) |
| 673 return getFrom(sheetContents->singleOwnerDocument()); | 672 return getFrom(sheetContents->singleOwnerDocument()); |
| 674 return 0; | 673 return 0; |
| 675 } | 674 } |
| 676 | 675 |
| 677 } // namespace WebCore | 676 } // namespace WebCore |
| OLD | NEW |