2012-05-29 08:52:43 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-01 04:33:11 -07:00
|
|
|
|
2013-08-23 08:07:10 -07:00
|
|
|
#ifndef nsHtml5TokenizerLoopPolicies_h
|
|
|
|
#define nsHtml5TokenizerLoopPolicies_h
|
2011-11-01 04:33:11 -07:00
|
|
|
|
2011-11-01 04:33:11 -07:00
|
|
|
/**
|
|
|
|
* This policy does not report tokenizer transitions anywhere. To be used
|
|
|
|
* when _not_ viewing source.
|
|
|
|
*/
|
2011-11-01 04:33:11 -07:00
|
|
|
struct nsHtml5SilentPolicy
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
static const bool reportErrors = false;
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t transition(nsHtml5Highlighter* aHighlighter,
|
|
|
|
int32_t aState,
|
2011-11-01 04:33:11 -07:00
|
|
|
bool aReconsume,
|
2014-03-05 11:38:50 -08:00
|
|
|
int32_t aPos)
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
return aState;
|
|
|
|
}
|
2014-03-05 11:38:50 -08:00
|
|
|
static void completedNamedCharacterReference(nsHtml5Highlighter* aHighlighter)
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-11-01 04:33:11 -07:00
|
|
|
/**
|
|
|
|
* This policy reports the tokenizer transitions to a highlighter. To be used
|
|
|
|
* when viewing source.
|
|
|
|
*/
|
2011-11-01 04:33:11 -07:00
|
|
|
struct nsHtml5ViewSourcePolicy
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
static const bool reportErrors = true;
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t transition(nsHtml5Highlighter* aHighlighter,
|
|
|
|
int32_t aState,
|
2011-11-01 04:33:11 -07:00
|
|
|
bool aReconsume,
|
2014-03-05 11:38:50 -08:00
|
|
|
int32_t aPos)
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
return aHighlighter->Transition(aState, aReconsume, aPos);
|
|
|
|
}
|
2014-03-05 11:38:50 -08:00
|
|
|
static void completedNamedCharacterReference(nsHtml5Highlighter* aHighlighter)
|
|
|
|
{
|
2011-11-01 04:33:11 -07:00
|
|
|
aHighlighter->CompletedNamedCharacterReference();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-23 08:07:10 -07:00
|
|
|
#endif // nsHtml5TokenizerLoopPolicies_h
|