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

Side by Side Diff: third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h

Issue 1483013003: Find In Page doesn't work properly when " " is searched (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing the patch Created 4 years, 11 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) 2004, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2009 Apple 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 25 matching lines...) Expand all
36 TextIteratorEmitsOriginalText = 1 << 3, 36 TextIteratorEmitsOriginalText = 1 << 3,
37 TextIteratorStopsOnFormControls = 1 << 4, 37 TextIteratorStopsOnFormControls = 1 << 4,
38 TextIteratorEmitsImageAltText = 1 << 5, 38 TextIteratorEmitsImageAltText = 1 << 5,
39 TextIteratorEntersOpenShadowRoots = 1 << 6, 39 TextIteratorEntersOpenShadowRoots = 1 << 6,
40 TextIteratorEmitsObjectReplacementCharacter = 1 << 7, 40 TextIteratorEmitsObjectReplacementCharacter = 1 << 7,
41 TextIteratorDoesNotBreakAtReplacedElement = 1 << 8, 41 TextIteratorDoesNotBreakAtReplacedElement = 1 << 8,
42 TextIteratorForInnerText = 1 << 9, 42 TextIteratorForInnerText = 1 << 9,
43 TextIteratorForSelectionToString = 1 << 10, 43 TextIteratorForSelectionToString = 1 << 10,
44 TextIteratorForWindowFind = 1 << 11, 44 TextIteratorForWindowFind = 1 << 11,
45 TextIteratorExcludeAutofilledValue = 1 << 12, 45 TextIteratorExcludeAutofilledValue = 1 << 12,
46 TextIteratorCollapseTrailingSpace = 1 << 13,
46 }; 47 };
47 typedef unsigned TextIteratorBehaviorFlags; 48 typedef unsigned TextIteratorBehaviorFlags;
48 49
49 } // namespace blink 50 } // namespace blink
50 51
51 #endif // TextIteratorFlags_h 52 #endif // TextIteratorFlags_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698