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

Side by Side Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Rebaseline android placeholder test Created 4 years 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 STATIC_ASSERT_ENUM(WebAXNameFromContents, AXNameFromContents); 387 STATIC_ASSERT_ENUM(WebAXNameFromContents, AXNameFromContents);
388 STATIC_ASSERT_ENUM(WebAXNameFromPlaceholder, AXNameFromPlaceholder); 388 STATIC_ASSERT_ENUM(WebAXNameFromPlaceholder, AXNameFromPlaceholder);
389 STATIC_ASSERT_ENUM(WebAXNameFromRelatedElement, AXNameFromRelatedElement); 389 STATIC_ASSERT_ENUM(WebAXNameFromRelatedElement, AXNameFromRelatedElement);
390 STATIC_ASSERT_ENUM(WebAXNameFromValue, AXNameFromValue); 390 STATIC_ASSERT_ENUM(WebAXNameFromValue, AXNameFromValue);
391 STATIC_ASSERT_ENUM(WebAXNameFromTitle, AXNameFromTitle); 391 STATIC_ASSERT_ENUM(WebAXNameFromTitle, AXNameFromTitle);
392 392
393 STATIC_ASSERT_ENUM(WebAXDescriptionFromUninitialized, 393 STATIC_ASSERT_ENUM(WebAXDescriptionFromUninitialized,
394 AXDescriptionFromUninitialized); 394 AXDescriptionFromUninitialized);
395 STATIC_ASSERT_ENUM(WebAXDescriptionFromAttribute, AXDescriptionFromAttribute); 395 STATIC_ASSERT_ENUM(WebAXDescriptionFromAttribute, AXDescriptionFromAttribute);
396 STATIC_ASSERT_ENUM(WebAXDescriptionFromContents, AXDescriptionFromContents); 396 STATIC_ASSERT_ENUM(WebAXDescriptionFromContents, AXDescriptionFromContents);
397 STATIC_ASSERT_ENUM(WebAXDescriptionFromPlaceholder,
398 AXDescriptionFromPlaceholder);
399 STATIC_ASSERT_ENUM(WebAXDescriptionFromRelatedElement, 397 STATIC_ASSERT_ENUM(WebAXDescriptionFromRelatedElement,
400 AXDescriptionFromRelatedElement); 398 AXDescriptionFromRelatedElement);
401 399
402 STATIC_ASSERT_ENUM(WebAXTextAffinityUpstream, TextAffinity::Upstream); 400 STATIC_ASSERT_ENUM(WebAXTextAffinityUpstream, TextAffinity::Upstream);
403 STATIC_ASSERT_ENUM(WebAXTextAffinityDownstream, TextAffinity::Downstream); 401 STATIC_ASSERT_ENUM(WebAXTextAffinityDownstream, TextAffinity::Downstream);
404 402
405 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Uncached, 403 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Uncached,
406 ApplicationCacheHost::kUncached); 404 ApplicationCacheHost::kUncached);
407 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::kIdle); 405 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::kIdle);
408 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Checking, 406 STATIC_ASSERT_ENUM(WebApplicationCacheHost::Checking,
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 ProgressBarCompletion::DOMContentLoaded); 898 ProgressBarCompletion::DOMContentLoaded);
901 STATIC_ASSERT_ENUM( 899 STATIC_ASSERT_ENUM(
902 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, 900 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames,
903 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 901 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
904 902
905 static_assert(kSerializedScriptValueVersion == 903 static_assert(kSerializedScriptValueVersion ==
906 SerializedScriptValue::wireFormatVersion, 904 SerializedScriptValue::wireFormatVersion,
907 ""); 905 "");
908 906
909 } // namespace blink 907 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObject.h ('k') | third_party/WebKit/Source/web/WebAXObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698