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

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

Issue 2261393002: Fixed the behaviour of form submit to Firefox: form does not submit once it has been removed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Final nit update" Created 4 years, 3 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 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 MediaStreamConstraintsOldAndNew = 1389, 1160 MediaStreamConstraintsOldAndNew = 1389,
1161 V8ArrayProtectorDirtied = 1390, 1161 V8ArrayProtectorDirtied = 1390,
1162 V8ArraySpeciesModified = 1391, 1162 V8ArraySpeciesModified = 1391,
1163 V8ArrayPrototypeConstructorModified = 1392, 1163 V8ArrayPrototypeConstructorModified = 1392,
1164 V8ArrayInstanceProtoModified = 1393, 1164 V8ArrayInstanceProtoModified = 1393,
1165 V8ArrayInstanceConstructorModified = 1394, 1165 V8ArrayInstanceConstructorModified = 1394,
1166 V8LegacyFunctionDeclaration = 1395, 1166 V8LegacyFunctionDeclaration = 1395,
1167 V8RegExpPrototypeSourceGetter = 1396, 1167 V8RegExpPrototypeSourceGetter = 1396,
1168 V8RegExpPrototypeOldFlagGetter = 1397, 1168 V8RegExpPrototypeOldFlagGetter = 1397,
1169 V8DecimalWithLeadingZeroInStrictMode = 1398, 1169 V8DecimalWithLeadingZeroInStrictMode = 1398,
1170 FormSubmissionNotInDocumentTree = 1399,
1171 GetUserMediaPrefixed = 1400, 1170 GetUserMediaPrefixed = 1400,
1172 GetUserMediaLegacy = 1401, 1171 GetUserMediaLegacy = 1401,
1173 GetUserMediaPromise = 1402, 1172 GetUserMediaPromise = 1402,
1174 CSSFilterFunctionNoArguments = 1403, 1173 CSSFilterFunctionNoArguments = 1403,
1175 V8LegacyDateParser = 1404, 1174 V8LegacyDateParser = 1404,
1176 OpenSearchInsecureOriginInsecureTarget = 1405, 1175 OpenSearchInsecureOriginInsecureTarget = 1405,
1177 OpenSearchInsecureOriginSecureTarget = 1406, 1176 OpenSearchInsecureOriginSecureTarget = 1406,
1178 OpenSearchSecureOriginInsecureTarget = 1407, 1177 OpenSearchSecureOriginInsecureTarget = 1407,
1179 OpenSearchSecureOriginSecureTarget = 1408, 1178 OpenSearchSecureOriginSecureTarget = 1408,
1180 RegisterProtocolHandlerSecureOrigin = 1409, 1179 RegisterProtocolHandlerSecureOrigin = 1409,
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 friend class UseCounterTest; 1387 friend class UseCounterTest;
1389 unsigned m_muteCount; 1388 unsigned m_muteCount;
1390 1389
1391 CountBits m_countBits; 1390 CountBits m_countBits;
1392 BitVector m_CSSFeatureBits; 1391 BitVector m_CSSFeatureBits;
1393 }; 1392 };
1394 1393
1395 } // namespace blink 1394 } // namespace blink
1396 1395
1397 #endif // UseCounter_h 1396 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698