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 2416033002: Fixed the behaviour of form submit to match the standard: no submit is taken place when the form is… (Closed)
Patch Set: Modified layout tests for the new behaviour Created 4 years, 2 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 MediaStreamConstraintsOldAndNew = 1389, 1111 MediaStreamConstraintsOldAndNew = 1389,
1112 V8ArrayProtectorDirtied = 1390, 1112 V8ArrayProtectorDirtied = 1390,
1113 V8ArraySpeciesModified = 1391, 1113 V8ArraySpeciesModified = 1391,
1114 V8ArrayPrototypeConstructorModified = 1392, 1114 V8ArrayPrototypeConstructorModified = 1392,
1115 V8ArrayInstanceProtoModified = 1393, 1115 V8ArrayInstanceProtoModified = 1393,
1116 V8ArrayInstanceConstructorModified = 1394, 1116 V8ArrayInstanceConstructorModified = 1394,
1117 V8LegacyFunctionDeclaration = 1395, 1117 V8LegacyFunctionDeclaration = 1395,
1118 V8RegExpPrototypeSourceGetter = 1396, 1118 V8RegExpPrototypeSourceGetter = 1396,
1119 V8RegExpPrototypeOldFlagGetter = 1397, 1119 V8RegExpPrototypeOldFlagGetter = 1397,
1120 V8DecimalWithLeadingZeroInStrictMode = 1398, 1120 V8DecimalWithLeadingZeroInStrictMode = 1398,
1121 FormSubmissionNotInDocumentTree = 1399,
1122 GetUserMediaPrefixed = 1400, 1121 GetUserMediaPrefixed = 1400,
1123 GetUserMediaLegacy = 1401, 1122 GetUserMediaLegacy = 1401,
1124 GetUserMediaPromise = 1402, 1123 GetUserMediaPromise = 1402,
1125 CSSFilterFunctionNoArguments = 1403, 1124 CSSFilterFunctionNoArguments = 1403,
1126 V8LegacyDateParser = 1404, 1125 V8LegacyDateParser = 1404,
1127 OpenSearchInsecureOriginInsecureTarget = 1405, 1126 OpenSearchInsecureOriginInsecureTarget = 1405,
1128 OpenSearchInsecureOriginSecureTarget = 1406, 1127 OpenSearchInsecureOriginSecureTarget = 1406,
1129 OpenSearchSecureOriginInsecureTarget = 1407, 1128 OpenSearchSecureOriginInsecureTarget = 1407,
1130 OpenSearchSecureOriginSecureTarget = 1408, 1129 OpenSearchSecureOriginSecureTarget = 1408,
1131 RegisterProtocolHandlerSecureOrigin = 1409, 1130 RegisterProtocolHandlerSecureOrigin = 1409,
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 // Tracks what features/properties need to be reported to the legacy 1451 // Tracks what features/properties need to be reported to the legacy
1453 // histograms. 1452 // histograms.
1454 BitVector m_featureBits; 1453 BitVector m_featureBits;
1455 BitVector m_CSSBits; 1454 BitVector m_CSSBits;
1456 } m_legacyCounter; 1455 } m_legacyCounter;
1457 }; 1456 };
1458 1457
1459 } // namespace blink 1458 } // namespace blink
1460 1459
1461 #endif // UseCounter_h 1460 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698