Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright (C) 2012 Google, Inc. All rights reserved. | 3 * Copyright (C) 2012 Google, Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 726 | 726 |
| 727 case OverflowChangedEvent: | 727 case OverflowChangedEvent: |
| 728 return "The 'overflowchanged' event is deprecated and may be removed. Pl ease do not use it."; | 728 return "The 'overflowchanged' event is deprecated and may be removed. Pl ease do not use it."; |
| 729 | 729 |
| 730 case HTMLHeadElementProfile: | 730 case HTMLHeadElementProfile: |
| 731 return "'HTMLHeadElement.profile' is deprecated. The reflected attribute has no effect."; | 731 return "'HTMLHeadElement.profile' is deprecated. The reflected attribute has no effect."; |
| 732 | 732 |
| 733 case ElementSetPrefix: | 733 case ElementSetPrefix: |
| 734 return "Setting 'Element.prefix' is deprecated, as it is read-only per D OM (http://dom.spec.whatwg.org/#element)."; | 734 return "Setting 'Element.prefix' is deprecated, as it is read-only per D OM (http://dom.spec.whatwg.org/#element)."; |
| 735 | 735 |
| 736 case SyncXHRWithCredentials: | |
| 737 return "Support for withCredentials deprecated for synchronous requests. "; | |
|
Inactive
2014/06/16 18:05:47
Setting 'XMLHttpRequest.withCredentials' for synch
| |
| 738 | |
| 736 // Features that aren't deprecated don't have a deprecation message. | 739 // Features that aren't deprecated don't have a deprecation message. |
| 737 default: | 740 default: |
| 738 return String(); | 741 return String(); |
| 739 } | 742 } |
| 740 } | 743 } |
| 741 | 744 |
| 742 void UseCounter::count(CSSParserContext context, CSSPropertyID feature) | 745 void UseCounter::count(CSSParserContext context, CSSPropertyID feature) |
| 743 { | 746 { |
| 744 ASSERT(feature >= firstCSSProperty); | 747 ASSERT(feature >= firstCSSProperty); |
| 745 ASSERT(feature <= lastCSSProperty); | 748 ASSERT(feature <= lastCSSProperty); |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 774 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 777 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
| 775 { | 778 { |
| 776 // FIXME: We may want to handle stylesheets that have multiple owners | 779 // FIXME: We may want to handle stylesheets that have multiple owners |
| 777 // http://crbug.com/242125 | 780 // http://crbug.com/242125 |
| 778 if (sheetContents && sheetContents->hasSingleOwnerNode()) | 781 if (sheetContents && sheetContents->hasSingleOwnerNode()) |
| 779 return getFrom(sheetContents->singleOwnerDocument()); | 782 return getFrom(sheetContents->singleOwnerDocument()); |
| 780 return 0; | 783 return 0; |
| 781 } | 784 } |
| 782 | 785 |
| 783 } // namespace WebCore | 786 } // namespace WebCore |
| OLD | NEW |