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

Side by Side Diff: third_party/WebKit/Source/core/frame/UseCounter.h

Issue 2594593002: INPUT element: Remove case-insensitive matching for radio button group names. (Closed)
Patch Set: Created 3 years, 12 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 * 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 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 HTMLCanvasElement = 1503, 1192 HTMLCanvasElement = 1503,
1193 SVGSMILAnimationElementTiming = 1504, 1193 SVGSMILAnimationElementTiming = 1504,
1194 SVGSMILBeginEndAnimationElement = 1505, 1194 SVGSMILBeginEndAnimationElement = 1505,
1195 SVGSMILPausing = 1506, 1195 SVGSMILPausing = 1506,
1196 SVGSMILCurrentTime = 1507, 1196 SVGSMILCurrentTime = 1507,
1197 HTMLBodyElementOnSelectionChangeAttribute = 1508, 1197 HTMLBodyElementOnSelectionChangeAttribute = 1508,
1198 ForeignFetchInterception = 1509, 1198 ForeignFetchInterception = 1509,
1199 MapNameMatchingStrict = 1510, 1199 MapNameMatchingStrict = 1510,
1200 MapNameMatchingASCIICaseless = 1511, 1200 MapNameMatchingASCIICaseless = 1511,
1201 MapNameMatchingUnicodeLower = 1512, 1201 MapNameMatchingUnicodeLower = 1512,
1202 RadioNameMatchingStrict = 1513,
1203 RadioNameMatchingASCIICaseless = 1514,
1204 RadioNameMatchingCaseFolding = 1515,
1205 InputSelectionGettersThrow = 1517, 1202 InputSelectionGettersThrow = 1517,
1206 UsbGetDevices = 1519, 1203 UsbGetDevices = 1519,
1207 UsbRequestDevice = 1520, 1204 UsbRequestDevice = 1520,
1208 UsbDeviceOpen = 1521, 1205 UsbDeviceOpen = 1521,
1209 UsbDeviceClose = 1522, 1206 UsbDeviceClose = 1522,
1210 UsbDeviceSelectConfiguration = 1523, 1207 UsbDeviceSelectConfiguration = 1523,
1211 UsbDeviceClaimInterface = 1524, 1208 UsbDeviceClaimInterface = 1524,
1212 UsbDeviceReleaseInterface = 1525, 1209 UsbDeviceReleaseInterface = 1525,
1213 UsbDeviceSelectAlternateInterface = 1526, 1210 UsbDeviceSelectAlternateInterface = 1526,
1214 UsbDeviceControlTransferIn = 1527, 1211 UsbDeviceControlTransferIn = 1527,
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1455 // Tracks what features/properties need to be reported to the legacy 1452 // Tracks what features/properties need to be reported to the legacy
1456 // histograms. 1453 // histograms.
1457 BitVector m_featureBits; 1454 BitVector m_featureBits;
1458 BitVector m_CSSBits; 1455 BitVector m_CSSBits;
1459 } m_legacyCounter; 1456 } m_legacyCounter;
1460 }; 1457 };
1461 1458
1462 } // namespace blink 1459 } // namespace blink
1463 1460
1464 #endif // UseCounter_h 1461 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698