| 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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 | 915 |
| 916 case CSSSelectorPseudoShadow: | 916 case CSSSelectorPseudoShadow: |
| 917 return "::shadow pseudo-element is deprecated. See https://www.chromesta
tus.com/features/6750456638341120 for more details."; | 917 return "::shadow pseudo-element is deprecated. See https://www.chromesta
tus.com/features/6750456638341120 for more details."; |
| 918 | 918 |
| 919 case PrefixedMouseEventMovementX: | 919 case PrefixedMouseEventMovementX: |
| 920 return replacedBy("webkitMovementX", "movementX"); | 920 return replacedBy("webkitMovementX", "movementX"); |
| 921 | 921 |
| 922 case PrefixedMouseEventMovementY: | 922 case PrefixedMouseEventMovementY: |
| 923 return replacedBy("webkitMovementY", "movementY"); | 923 return replacedBy("webkitMovementY", "movementY"); |
| 924 | 924 |
| 925 case VideoFullscreenAllowedExemption: | |
| 926 return "Entering fullscreen in an <iframe> with no allowfullscreen attri
bute is deprecated and will stop working in M46, around October 2015. Please use
the allowfullscreen attribute."; | |
| 927 | |
| 928 case SVGSMILElementInDocument: | 925 case SVGSMILElementInDocument: |
| 929 case SVGSMILAnimationInImageRegardlessOfCache: | 926 case SVGSMILAnimationInImageRegardlessOfCache: |
| 930 return "SVG's SMIL animations (<animate>, <set>, etc.) are deprecated an
d will be removed. Please use CSS animations or Web animations instead."; | 927 return "SVG's SMIL animations (<animate>, <set>, etc.) are deprecated an
d will be removed. Please use CSS animations or Web animations instead."; |
| 931 | 928 |
| 932 case MediaStreamLabel: | 929 case MediaStreamLabel: |
| 933 return "'MediaStream.label' is deprecated and will be removed in M47, ar
ound November 2015. Please use 'MediaStream.id' instead."; | 930 return "'MediaStream.label' is deprecated and will be removed in M47, ar
ound November 2015. Please use 'MediaStream.id' instead."; |
| 934 | 931 |
| 935 case MediaStreamStop: | 932 case MediaStreamStop: |
| 936 return "'MediaStream.stop()' is deprecated and will be removed in M47, a
round November 2015. Please use 'MediaStream.active' instead."; | 933 return "'MediaStream.stop()' is deprecated and will be removed in M47, a
round November 2015. Please use 'MediaStream.active' instead."; |
| 937 | 934 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 978 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
| 982 { | 979 { |
| 983 // FIXME: We may want to handle stylesheets that have multiple owners | 980 // FIXME: We may want to handle stylesheets that have multiple owners |
| 984 // http://crbug.com/242125 | 981 // http://crbug.com/242125 |
| 985 if (sheetContents && sheetContents->hasSingleOwnerNode()) | 982 if (sheetContents && sheetContents->hasSingleOwnerNode()) |
| 986 return getFrom(sheetContents->singleOwnerDocument()); | 983 return getFrom(sheetContents->singleOwnerDocument()); |
| 987 return 0; | 984 return 0; |
| 988 } | 985 } |
| 989 | 986 |
| 990 } // namespace blink | 987 } // namespace blink |
| OLD | NEW |