Index: Source/core/dom/custom/CustomElementMicrotaskStep.h |
diff --git a/Source/core/dom/custom/CustomElementMicrotaskStep.h b/Source/core/dom/custom/CustomElementMicrotaskStep.h |
index 080b89a5ca29eb251eb5828e87b6ab504939c1fd..c5f11ec0e2caab9793e63984bca4c31ff8117a05 100644 |
--- a/Source/core/dom/custom/CustomElementMicrotaskStep.h |
+++ b/Source/core/dom/custom/CustomElementMicrotaskStep.h |
@@ -42,8 +42,9 @@ public: |
virtual ~CustomElementMicrotaskStep() { } |
enum Result { |
- Continue = 1 << 0, |
- ShouldStop = 1 << 1 |
+ ContinueWithRemoving = 0, |
+ ShouldStop = 1 << 0, |
+ ShouldRemain = 1 << 1 |
}; |
virtual Result process() = 0; |